copyWith method

LightColorTemperatureMirekSchema copyWith({
  1. int? min,
  2. int? max,
})

Returns a copy of this object with its field values replaced by the ones provided to this method.

Implementation

LightColorTemperatureMirekSchema copyWith({
  int? min,
  int? max,
}) {
  return LightColorTemperatureMirekSchema(
    min: min ?? this.min,
    max: max ?? this.max,
  );
}