EnvironmentConfig constructor

EnvironmentConfig({
  1. FastAppEnvironment environment = FastAppEnvironment.product,
  2. String address = '',
  3. bool showLog = false,
  4. String proxy = '',
  5. bool grpc = false,
  6. bool restful = true,
})

Implementation

EnvironmentConfig({
  this.environment = FastAppEnvironment.product,
  this.address = '',
  this.showLog = false,
  this.proxy = '',
  this.grpc = false,
  this.restful = true,
});