copyWith method

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

Implementation

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