LocalDateTime constructor

LocalDateTime(
  1. int year, [
  2. int month = 1,
  3. int day = 1,
  4. int hour = 0,
  5. int minute = 0,
  6. int second = 0,
  7. int millisecond = 0,
  8. int microsecond = 0,
])

Creates a LocalDateTime.

Implementation

LocalDateTime(super.year, [
  super.month = 1,
  super.day = 1,
  super.hour = 0,
  super.minute = 0,
  super.second = 0,
  super.millisecond = 0,
  super.microsecond = 0,
]);