copyWith method
Generate a new ListParam by copying fields.
Implementation
ListParam<T> copyWith({List<T>? value, ListFormat? format}) {
return ListParam(value ?? this.value, format ?? this.format);
}
Generate a new ListParam by copying fields.
ListParam<T> copyWith({List<T>? value, ListFormat? format}) {
return ListParam(value ?? this.value, format ?? this.format);
}