copyWith method
Implementation
FieldConfiguration copyWith(
{String? description, int? id, bool? isDefault, String? name}) {
return FieldConfiguration(
description: description ?? this.description,
id: id ?? this.id,
isDefault: isDefault ?? this.isDefault,
name: name ?? this.name,
);
}