setupNotification method
Implementation
@override
Future<bool> setupNotification({required String characteristicUuid}) async {
final state = await methodChannel
.invokeMethod("setupNotification", {"characteristicUuid": characteristicUuid}).recoverBTException();
return state as bool? ?? false;
}