mirror of
https://github.com/immich-app/immich.git
synced 2026-02-26 13:10:14 -05:00
4 lines
86 B
Dart
4 lines
86 B
Dart
extension StringNumberUtils on String {
|
|
int? tryParseInt() => int.tryParse(this);
|
|
}
|