Environment constructor

Environment({
  1. String? applicationId,
  2. String? description,
  3. String? id,
  4. List<Monitor>? monitors,
  5. String? name,
  6. EnvironmentState? state,
})

Implementation

Environment({
  this.applicationId,
  this.description,
  this.id,
  this.monitors,
  this.name,
  this.state,
});