mergeStartSeconds method

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

Implementation

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