getUtcTimeZoneIdentifier method
Get the current UTC time zone identifier
Implementation
@override
Future<String> getUtcTimeZoneIdentifier() async {
final String utcIdentifier = await methodChannel
.invokeMethod(CHANNEL_METHOD_GET_UTC_TIMEZONE_IDENTIFIER);
return utcIdentifier;
}