selectGamepad static method

Future<bool> selectGamepad(
  1. int id
)

Implementation

static Future<bool> selectGamepad(int id) async {
  final bool? res = await _channel.invokeMethod('selectGamepad', {"id": id});
  return res ?? false;
}