PlatformSetup constructor

const PlatformSetup({
  1. required bool android,
  2. required bool ios,
  3. required bool web,
})

Creates a platform configuration.

Implementation

const PlatformSetup({
  required this.android,
  required this.ios,
  required this.web,
});