copyWith method

Resolution copyWith({
  1. String? description,
  2. String? id,
  3. String? name,
  4. String? self,
})

Implementation

Resolution copyWith(
    {String? description, String? id, String? name, String? self}) {
  return Resolution(
    description: description ?? this.description,
    id: id ?? this.id,
    name: name ?? this.name,
    self: self ?? this.self,
  );
}