fromInternet method

Future<DateTime> fromInternet({
  1. String? timeZoneName,
})

Get current DateTime from internet timeZoneName Set a timezone. Use Timezones if null will return a timezone from public client ip

Implementation

Future<DateTime> fromInternet({String? timeZoneName}) =>
    _fromInternet(timezone: timeZoneName);