listDevices method

Future<List> listDevices(
  1. String playerId
)

Implementation

Future<List<dynamic>> listDevices(String playerId) async {
  return await _methodChannel.invokeMethod<dynamic>(
        'listDevices',
        {'playerId': playerId},
      ) ?? [];
}