mirror of
https://github.com/immich-app/immich.git
synced 2025-06-20 22:11:01 -04:00
4 lines
86 B
Dart
4 lines
86 B
Dart
extension StringNumberUtils on String {
|
|
int? tryParseInt() => int.tryParse(this);
|
|
}
|