list static method

Future<List> list()

Implementation

static Future<List> list() async {
  try {
    List result = await _channel.invokeMethod('list');
    return result;
  } on PlatformException catch (e) {
    print(e.message);
    return <String>[];
  }
}