copyWith method

CustomFieldContextDefaultValueForgeUserField copyWith({
  1. String? accountId,
  2. String? contextId,
  3. String? type,
  4. UserFilter? userFilter,
})

Implementation

CustomFieldContextDefaultValueForgeUserField copyWith(
    {String? accountId,
    String? contextId,
    String? type,
    UserFilter? userFilter}) {
  return CustomFieldContextDefaultValueForgeUserField(
    accountId: accountId ?? this.accountId,
    contextId: contextId ?? this.contextId,
    type: type ?? this.type,
    userFilter: userFilter ?? this.userFilter,
  );
}