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;
}