AccountSummary constructor

AccountSummary({
  1. String? id,
  2. String? kind,
  3. String? name,
  4. bool? starred,
  5. List<WebPropertySummary>? webProperties,
})

Implementation

AccountSummary({
  this.id,
  this.kind,
  this.name,
  this.starred,
  this.webProperties,
});