readNotifyMessage method

void readNotifyMessage(
  1. String serviceUuid,
  2. String characteristicUuid,
  3. OnReadMessage onReadMessage,
  4. bool isDisposable,
)

Implementation

void readNotifyMessage(String serviceUuid,String characteristicUuid,OnReadMessage onReadMessage,bool isDisposable){
  _longTimeNotifyMessageCallbacks[characteristicUuid]=onReadMessage;
  _channel.invokeMethod("readNotifyMessage",{"serviceUuid":serviceUuid,"characteristicUuid":characteristicUuid});
}