stringResponse property

Stream<String> get stringResponse

Stream of string responses from the device.

Implementation

Stream<String> get stringResponse {
  return handleStringResponsePart(FlutterBluePlus
      .events.onCharacteristicReceived
      .where((event) => event.value[0] != _frameDataPrefix));
}