copyWith method

PeripheralValueUpdateV2Body copyWith({
  1. int? definitionId,
  2. bool? $value,
})

Implementation

PeripheralValueUpdateV2Body copyWith({int? definitionId, bool? $value}) {
  return PeripheralValueUpdateV2Body(
      definitionId: definitionId ?? this.definitionId,
      $value: $value ?? this.$value);
}