Account constructor

Account({
  1. AccountChildLink? childLink,
  2. DateTime? created,
  3. String? id,
  4. String? kind,
  5. String? name,
  6. AccountPermissions? permissions,
  7. String? selfLink,
  8. bool? starred,
  9. DateTime? updated,
})

Implementation

Account({
  this.childLink,
  this.created,
  this.id,
  this.kind,
  this.name,
  this.permissions,
  this.selfLink,
  this.starred,
  this.updated,
});