Data constructor

Data({
  1. String? country,
  2. String? countryCode,
  3. String? createdAt,
  4. String? email,
  5. String? firstName,
  6. String? founderShares,
  7. String? imgUrl,
  8. String? lastName,
  9. String? phone,
  10. String? uid,
  11. bool? isActive,
  12. String? updatedAt,
})

Implementation

Data(
    {this.country,
    this.countryCode,
    this.createdAt,
    this.email,
    this.firstName,
    this.founderShares,
    this.imgUrl,
    this.lastName,
    this.phone,
    this.uid,
    this.isActive,
    this.updatedAt});