copyWith method

CustomFieldContextDefaultValueForgeMultiUserField copyWith({
  1. List<String>? accountIds,
  2. String? contextId,
  3. String? type,
})

Implementation

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