BillingDetails constructor

BillingDetails({
  1. required BillingAddress billing_details,
  2. required String? email,
  3. required String name,
  4. required String? phone,
})

Implementation

BillingDetails({
  required this.billing_details,
  required this.email,
  required this.name,
  required this.phone,
});