Account constructor

Account({
  1. String? createTime,
  2. String? displayName,
  3. String? name,
  4. List<String>? pendingTasks,
  5. bool? premium,
  6. String? state,
  7. TimeZone? timeZone,
})

Implementation

Account({
  this.createTime,
  this.displayName,
  this.name,
  this.pendingTasks,
  this.premium,
  this.state,
  this.timeZone,
});