dataResponse property

Stream<Uint8List> get dataResponse

Stream of data responses from the device.

Implementation

Stream<Uint8List> get dataResponse {
  return handleDataResponsePart(FlutterBluePlus
      .events.onCharacteristicReceived
      .where((event) => event.value[0] == _frameDataPrefix));
}