callListTimezones method
Invokes org.freedesktop.timedate1.ListTimezones()
Implementation
Future<List<String>> callListTimezones({bool noAutoStart = false, bool allowInteractiveAuthorization = false}) async {
var result = await callMethod('org.freedesktop.timedate1', 'ListTimezones', [], replySignature: DBusSignature('as'), noAutoStart: noAutoStart, allowInteractiveAuthorization: allowInteractiveAuthorization);
return result.returnValues[0].asStringArray().toList();
}