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