copyWith method

FollowDate copyWith({
  1. String? format,
  2. String? time,
  3. String? sort,
})

Implementation

FollowDate copyWith({  String? format,
  String? time,
  String? sort,
}) => FollowDate(  format: format ?? _format,
  time: time ?? _time,
  sort: sort ?? _sort,
);