copyWith method
UpdateCustomFieldDetails
copyWith({
- String? description,
- String? name,
- UpdateCustomFieldDetailsSearcherKey? searcherKey,
Implementation
UpdateCustomFieldDetails copyWith(
{String? description,
String? name,
UpdateCustomFieldDetailsSearcherKey? searcherKey}) {
return UpdateCustomFieldDetails(
description: description ?? this.description,
name: name ?? this.name,
searcherKey: searcherKey ?? this.searcherKey,
);
}