Settings constructor

const Settings({
  1. required NetworkSettings network,
  2. required EasterEggsSettings easterEggs,
  3. required ScienceSettings science,
  4. required ArmSettings arm,
  5. required DashboardSettings dashboard,
})

A const constructor.

Implementation

const Settings({
  required this.network,
  required this.easterEggs,
  required this.science,
  required this.arm,
  required this.dashboard,
});