copyWith method

CustomFieldContextDefaultValueForgeDateTimeField copyWith({
  1. String? contextId,
  2. String? dateTime,
  3. String? type,
  4. bool? useCurrent,
})

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,
  );
}