AppConfig constructor

AppConfig({
  1. required String baseUrl,
  2. Flavor flavor = Flavor.preprod,
})

Implementation

AppConfig({
  required this.baseUrl,
  this.flavor = Flavor.preprod,
});