copyWith method
CustomFieldDefinitionJsonBean
copyWith({
- String? description,
- String? name,
- CustomFieldDefinitionJsonBeanSearcherKey? searcherKey,
- String? type,
Implementation
CustomFieldDefinitionJsonBean copyWith(
{String? description,
String? name,
CustomFieldDefinitionJsonBeanSearcherKey? searcherKey,
String? type}) {
return CustomFieldDefinitionJsonBean(
description: description ?? this.description,
name: name ?? this.name,
searcherKey: searcherKey ?? this.searcherKey,
type: type ?? this.type,
);
}