getLocalTimeZoneIdentifier method
Get the current Local time zone identifier
Implementation
@override
Future<String> getLocalTimeZoneIdentifier() async {
final String localIdentifier = await methodChannel
.invokeMethod(CHANNEL_METHOD_GET_LOCAL_TIMEZONE_IDENTIFIER);
return localIdentifier;
}