copyWith method

ResolutionJsonBean copyWith({
  1. bool? default$,
  2. String? description,
  3. String? iconUrl,
  4. String? id,
  5. String? name,
  6. String? self,
})

Implementation

ResolutionJsonBean copyWith(
    {bool? default$,
    String? description,
    String? iconUrl,
    String? id,
    String? name,
    String? self}) {
  return ResolutionJsonBean(
    default$: default$ ?? this.default$,
    description: description ?? this.description,
    iconUrl: iconUrl ?? this.iconUrl,
    id: id ?? this.id,
    name: name ?? this.name,
    self: self ?? this.self,
  );
}