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