copyWith method
CustomFieldContextSingleUserPickerDefaults
copyWith({
- String? accountId,
- String? contextId,
- String? type,
- UserFilter? userFilter,
Implementation
CustomFieldContextSingleUserPickerDefaults copyWith(
{String? accountId,
String? contextId,
String? type,
UserFilter? userFilter}) {
return CustomFieldContextSingleUserPickerDefaults(
accountId: accountId ?? this.accountId,
contextId: contextId ?? this.contextId,
type: type ?? this.type,
userFilter: userFilter ?? this.userFilter,
);
}