connectBluetooth static method

Future<bool> connectBluetooth(
  1. String address
)

Implementation

static Future<bool> connectBluetooth(String address) async {
  try{
    final bool result = await _channel.invokeMethod('connectBluetooth',{"address":address});
    return result;
  }catch(e){
    return false;
  }

}