mergeEndSeconds method

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

Implementation

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