BillingDetails constructor
BillingDetails({
- required BillingAddress billing_details,
- required String? email,
- required String name,
- required String? phone,
Implementation
BillingDetails({
required this.billing_details,
required this.email,
required this.name,
required this.phone,
});