mergeEndSeconds method

DateTime mergeEndSeconds({
  1. int second = 59,
  2. int millisecond = 999,
  3. int microsecond = 0,
})

Implementation

DateTime mergeEndSeconds({
  final int second = 59,
  final int millisecond = 999,
  final int microsecond = 0,
}) => copyWith(
  second: second,
  millisecond: millisecond,
  microsecond: microsecond,
);