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