copyWith method

Conditions copyWith({
  1. String? type,
  2. Value? value,
})

Implementation

Conditions copyWith({
  String? type,
  Value? value,
}) =>
    Conditions(
      type: type ?? this.type,
      value: value ?? this.value,
    );