GroupTraits constructor

GroupTraits({
  1. Address? address,
  2. String? avatar,
  3. String? createdAt,
  4. String? description,
  5. String? email,
  6. String? employees,
  7. String? id,
  8. String? industry,
  9. String? name,
  10. String? phone,
  11. String? plan,
  12. String? website,
  13. Map<String, dynamic>? custom,
})

Implementation

GroupTraits(
    {this.address,
    this.avatar,
    this.createdAt,
    this.description,
    this.email,
    this.employees,
    this.id,
    this.industry,
    this.name,
    this.phone,
    this.plan,
    this.website,
    Map<String, dynamic>? custom})
    : super(custom: custom);