defaultPlatforms top-level constant

Map<String, bool> const defaultPlatforms

Default platform settings.

Only iOS and Android are enabled by default since most Flutter projects target mobile. Users can enable additional platforms in analysis_options_custom.yaml.

Implementation

const Map<String, bool> defaultPlatforms = <String, bool>{
  'ios': true,
  'android': true,
  'macos': false,
  'web': false,
  'windows': false,
  'linux': false,
};