MemberDetail constructor

MemberDetail(
  1. String? memberId,
  2. String firstName,
  3. String lastName,
  4. String? countryCode,
  5. String? phoneNumber,
  6. int cashback,
  7. num points,
)

Implementation

MemberDetail(this.memberId, this.firstName, this.lastName,
    this.countryCode, this.phoneNumber,
    this.cashback, this.points);