copyWith method

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

Implementation

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