nowToIsoString static method

Future<String> nowToIsoString()

Returns the current accurate UTC time as an ISO 8601 string.

Implementation

static Future<String> nowToIsoString() =>
    now().then((time) => time.toIso8601String());