SolarTime constructor

const SolarTime(
  1. int year,
  2. int month,
  3. int day,
  4. int hour,
  5. int minute,
  6. double second,
)

Implementation

const SolarTime(
  this.year,
  this.month,
  this.day,
  this.hour,
  this.minute,
  this.second,
);