FlexAdaptive.off constructor

const FlexAdaptive.off({
  1. bool android = false,
  2. bool androidWeb = false,
  3. bool fuchsia = false,
  4. bool fuchsiaWeb = false,
  5. bool iOS = false,
  6. bool iOSWeb = false,
  7. bool linux = false,
  8. bool linuxWeb = false,
  9. bool macOS = false,
  10. bool macOSWeb = false,
  11. bool windows = false,
  12. bool windowsWeb = false,
  13. bool? overrideIsWeb,
})

The adaptive feature is not used.

This is also the default behavior for all adaptive features.

Implementation

const FlexAdaptive.off({
  this.android = false,
  this.androidWeb = false,
  this.fuchsia = false,
  this.fuchsiaWeb = false,
  this.iOS = false,
  this.iOSWeb = false,
  this.linux = false,
  this.linuxWeb = false,
  this.macOS = false,
  this.macOSWeb = false,
  this.windows = false,
  this.windowsWeb = false,
  this.overrideIsWeb,
});