copyWith method

UpdatedAtDateTime copyWith({
  1. String? date,
  2. String? time,
})

Implementation

UpdatedAtDateTime copyWith({  String? date,
  String? time,
}) => UpdatedAtDateTime(  date: date ?? _date,
  time: time ?? _time,
);