ReadCharacteristicResponse constructor
ReadCharacteristicResponse({
- String? remoteId,
- BluetoothCharacteristic? characteristic,
Implementation
factory ReadCharacteristicResponse({
$core.String? remoteId,
BluetoothCharacteristic? characteristic,
}) {
final _result = create();
if (remoteId != null) {
_result.remoteId = remoteId;
}
if (characteristic != null) {
_result.characteristic = characteristic;
}
return _result;
}