getBtPermission method

  1. @override
Future<String?> getBtPermission()
override

Implementation

@override
Future<String?> getBtPermission() async {
  try {
    final result =
        await methodChannel.invokeMethod<String>('getBtPermission');
    return result;
  } catch (e) {
    throw Exception('getBluetoothPermission: κΆŒν•œ μ—λŸ¬: $e');
  }
}