Account constructor

Account({
  1. String? accountType,
  2. List<String>? automaticLabelIds,
  3. String? displayName,
  4. String? fullName,
  5. String? homepageUri,
  6. List<String>? labelIds,
  7. String? name,
  8. String? parent,
})

Implementation

Account({
  this.accountType,
  this.automaticLabelIds,
  this.displayName,
  this.fullName,
  this.homepageUri,
  this.labelIds,
  this.name,
  this.parent,
});