easy_network_time 1.0.0+1 easy_network_time: ^1.0.0+1 copied to clipboard
Easy Network Time
The resources to get the online time are taken from https://worldtimeapi.org.
Usage #
final dateTimeCurrent = await EasyNetworkTime.getTimeNetwork();
final dateTimeFromLocation = EasyNetworkTime.createDateTime(
DateTime.now(),
TimeLocation.asiaHoChiMinh,
);
print(dateTimeCurrent);
print(dateTimeFromLocation);