copyWith method
Implementation
Avatar copyWith(
{String? fileName,
String? id,
bool? isDeletable,
bool? isSelected,
bool? isSystemAvatar,
String? owner,
Map<String, dynamic>? urls}) {
return Avatar(
fileName: fileName ?? this.fileName,
id: id ?? this.id,
isDeletable: isDeletable ?? this.isDeletable,
isSelected: isSelected ?? this.isSelected,
isSystemAvatar: isSystemAvatar ?? this.isSystemAvatar,
owner: owner ?? this.owner,
urls: urls ?? this.urls,
);
}