OS constructor

const OS({
  1. Key? key,
  2. Widget? android,
  3. Widget? iOS,
  4. Widget? windows,
  5. Widget? macOS,
  6. Widget? linux,
  7. Widget? fuchsia,
  8. Widget? web,
  9. Widget? unknown,
})

Implementation

const OS({
  Key? key,
  this.android,
  this.iOS,
  this.windows,
  this.macOS,
  this.linux,
  this.fuchsia,
  this.web,
  this.unknown,
}) : super(key: key);