Payer constructor
- {required String name,
- required String email,
- required String? phone,
- required PayerAddress? address}
Implementation
Payer({
required this.name,
required this.email,
required this.phone,
required this.address
});
Payer({
required this.name,
required this.email,
required this.phone,
required this.address
});