copyWith method
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,
);
}