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