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