Buyer constructor

Buyer({
  1. String? email,
  2. String? mobile,
  3. String? language,
  4. String? os,
  5. bool? notifyBuyer,
  6. String? title,
  7. String? name,
  8. String? surname,
})

Implementation

Buyer({
  this.email,
  this.mobile,
  this.language,
  this.os,
  this.notifyBuyer,
  this.title,
  this.name,
  this.surname,
});