callListTimezones method

Future<List<String>> callListTimezones({
  1. bool noAutoStart = false,
  2. bool allowInteractiveAuthorization = false,
})

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();
}