UserAddressModel constructor

UserAddressModel({
  1. required String? sId,
  2. required String? companyName,
  3. required String? contactName,
  4. required String? emailId,
  5. required String? address,
  6. required String? mobileNumber,
  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

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