protontime 1.0.1
protontime: ^1.0.1 copied to clipboard
A library useful for creating fuzzy timestamps. (e.g. "2 min ago")
example/protontime_example.dart
import 'package:protontime/protontime.dart' as protontime;
void main() {
DateTime now = DateTime.now();
String unReadableTime = "${now.year}-01-01T00:00:00.000000Z";
final readableTime = protontime.format(unReadableTime);
print("Unreadable Time: $unReadableTime");
print('Readable Time: $readableTime');
}