PayerModel constructor

PayerModel({
  1. String? cpfOrCnpj,
  2. String? name,
  3. String? phonePrefix,
  4. String? phone,
  5. String? email,
  6. AddressModel? address,
})

Implementation

PayerModel({
  this.cpfOrCnpj,
  this.name,
  this.phonePrefix,
  this.phone,
  this.email,
  this.address,
});