getBluetoothMacAddress method

  1. @override
Future<String> getBluetoothMacAddress()
override

Implementation

@override
Future<String> getBluetoothMacAddress() async {
  final result = await methodChannel.invokeMethod('getBluetoothMacAddress');
  return result ?? "";
}