copyWith method
Implementation
CustomFieldContextDefaultValueForgeMultiUserField copyWith(
{List<String>? accountIds, String? contextId, String? type}) {
return CustomFieldContextDefaultValueForgeMultiUserField(
accountIds: accountIds ?? this.accountIds,
contextId: contextId ?? this.contextId,
type: type ?? this.type,
);
}