getCarriers static method

Future<List<String>> getCarriers()

Implementation

static Future<List<String>> getCarriers() async {
  var carriers = await _channel.invokeMethod('getCarriers') as List<dynamic>;
  return new List<String>.from(carriers);
}