mirror of
https://github.com/jagandeepbrar/lunasea.git
synced 2026-08-31 12:42:34 +00:00
10 lines
224 B
Dart
10 lines
224 B
Dart
abstract class LunaParser {
|
|
static DateTime? dateTimeFromString(String? date) {
|
|
return DateTime.tryParse(date ?? '');
|
|
}
|
|
|
|
static String? dateTimeToISO8601(DateTime? date) {
|
|
return date?.toIso8601String();
|
|
}
|
|
}
|