Backup constructor

Backup({
  1. String? createTime,
  2. Map<String, String>? labels,
  3. String? name,
  4. String? state,
  5. String? statusMessage,
  6. String? type,
  7. String? updateTime,
})

Implementation

Backup({
  this.createTime,
  this.labels,
  this.name,
  this.state,
  this.statusMessage,
  this.type,
  this.updateTime,
});