34 lines
796 B
Dart
Raw Normal View History

2025-08-13 00:26:59 +07:00
part of 'extension.dart';
2025-08-13 00:22:49 +07:00
extension DateTimeIndonesia on DateTime {
/// Format: 13 Agustus 2025
2025-08-13 00:26:59 +07:00
String get toDate {
2025-08-13 00:22:49 +07:00
return DateFormat('d MMMM yyyy', 'id_ID').format(this);
}
/// Format: 13 Agustus 2025 20:00
2025-08-13 00:26:59 +07:00
String get toDatetime {
2025-08-13 00:22:49 +07:00
return DateFormat('d MMMM yyyy HH:mm', 'id_ID').format(this);
}
/// Format: Rabu, 13 Agustus 2025
2025-08-13 00:26:59 +07:00
String get toDayDate {
2025-08-13 00:22:49 +07:00
return DateFormat('EEEE, d MMMM yyyy', 'id_ID').format(this);
}
/// Format: 13/08/2025
2025-08-13 00:26:59 +07:00
String get toShortDate {
2025-08-13 00:22:49 +07:00
return DateFormat('dd/MM/yyyy', 'id_ID').format(this);
}
/// Format: 13-08-2025
2025-08-13 00:26:59 +07:00
String get toServerDate {
2025-08-13 00:22:49 +07:00
return DateFormat('dd-MM-yyyy', 'id_ID').format(this);
}
/// Format jam: 14:30
2025-08-13 00:26:59 +07:00
String get toHourMinute {
2025-08-13 00:22:49 +07:00
return DateFormat('HH:mm', 'id_ID').format(this);
}
}