Environment constructor

const Environment({
  1. required String name,
  2. required String baseUrl,
  3. required String description,
  4. bool isProduction = false,
})

Implementation

const Environment({
  required this.name,
  required this.baseUrl,
  required this.description,
  this.isProduction = false,
});