Tier constructor

Tier({
  1. String? DiskQuota,
  2. String? RAM,
  3. String? kind,
  4. List<String>? region,
  5. String? tier,
})

Implementation

Tier({
  this.DiskQuota,
  this.RAM,
  this.kind,
  this.region,
  this.tier,
});