mirror of
https://codeberg.org/shroff/phylum.git
synced 2026-02-14 15:38:42 -06:00
10 lines
192 B
Dart
10 lines
192 B
Dart
import 'package:intl/intl.dart';
|
|
|
|
final _readableFormat = DateFormat.MMMd();
|
|
|
|
extension ReadableFormat on DateTime {
|
|
String formatReadable() {
|
|
return _readableFormat.format(this);
|
|
}
|
|
}
|