Shopper constructor

Shopper({
  1. Address? billingAddress,
  2. required String cpf,
  3. required String email,
  4. required String firstName,
  5. required String lastName,
  6. required String phone,
  7. String? birthDate,
})

Implementation

Shopper({
  this.billingAddress,
  required this.cpf,
  required this.email,
  required this.firstName,
  required this.lastName,
  required this.phone,
  this.birthDate,
});