mirror of
https://github.com/immich-app/immich.git
synced 2025-02-11 01:18:24 -05:00
20 lines
425 B
Dart
20 lines
425 B
Dart
extension DurationExtension on String {
|
|
Duration? toDuration() {
|
|
try {
|
|
final parts = split(':')
|
|
.map((e) => double.parse(e).toInt())
|
|
.toList(growable: false);
|
|
return Duration(hours: parts[0], minutes: parts[1], seconds: parts[2]);
|
|
} catch (e) {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
double toDouble() {
|
|
return double.parse(this);
|
|
}
|
|
|
|
int toInt() {
|
|
return int.parse(this);
|
|
}
|
|
}
|