Files
PiliPlus/lib/utils/parse_int.dart
dom cd26cf6d98 tweaks
Signed-off-by: dom <githubaccount56556@proton.me>
2026-04-29 14:08:46 +08:00

7 lines
145 B
Dart

int? safeToInt(dynamic value) => switch (value) {
int() => value,
String() => int.tryParse(value),
num() => value.toInt(),
_ => null,
};