getDevices static method

Future<List> getDevices()

Implementation

static Future<List<dynamic>> getDevices() async {
  final List<dynamic> result = await _channel.invokeMethod("getDevices", {});
  return result;
}