UserBillingAddress constructor

UserBillingAddress({
  1. required String sId,
  2. required String? companyName,
  3. required String? contactName,
  4. required String? emailId,
  5. required String? mobileNumber,
  6. required String? address,
  7. required String? pinCode,
  8. required String? country,
  9. required String? state,
  10. required String? city,
  11. required bool? billingAddress,
  12. required bool? shippingAddress,
  13. required String sTypename,
})

Implementation

UserBillingAddress(
    {required this.sId,
    required this.companyName,
    required this.contactName,
    required this.emailId,
    required this.mobileNumber,
    required this.address,
    required this.pinCode,
    required this.country,
    required this.state,
    required this.city,
    required this.billingAddress,
    required this.shippingAddress,
    required this.sTypename});