Sys constructor Null safety

Sys(
  1. {int type = 0,
  2. int id = 0,
  3. required String country,
  4. int sunrise = 0,
  5. int sunset = 0}
)

Implementation

Sys({
  this.type = 0,
  this.id = 0,
  required this.country,
  this.sunrise = 0,
  this.sunset = 0,
});