launch_configuration.dart 205 B

12345678
  1. class LaunchConfiguration {
  2. const LaunchConfiguration({
  3. this.autoRegistrationSupported = false,
  4. });
  5. // APP will automatically register after launching.
  6. final bool autoRegistrationSupported;
  7. }