copyWith method
Implementation
CustomFieldContextDefaultValueForgeDateTimeField copyWith(
{String? contextId, String? dateTime, String? type, bool? useCurrent}) {
return CustomFieldContextDefaultValueForgeDateTimeField(
contextId: contextId ?? this.contextId,
dateTime: dateTime ?? this.dateTime,
type: type ?? this.type,
useCurrent: useCurrent ?? this.useCurrent,
);
}