Account constructor

Account({
  1. List<Approval>? approvals,
  2. String? createTime,
  3. Map<String, Object?>? inputProperties,
  4. String? name,
  5. String? provider,
  6. String? state,
  7. String? updateTime,
})

Implementation

Account({
  this.approvals,
  this.createTime,
  this.inputProperties,
  this.name,
  this.provider,
  this.state,
  this.updateTime,
});