copyWith method

UpdateCustomFieldDetails copyWith({
  1. String? description,
  2. String? name,
  3. 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,
  );
}