ProfileSummary constructor

ProfileSummary({
  1. String? id,
  2. String? kind,
  3. String? name,
  4. bool? starred,
  5. String? type,
})

Implementation

ProfileSummary({
  this.id,
  this.kind,
  this.name,
  this.starred,
  this.type,
});