UserAddressModel constructor
UserAddressModel({
- required String? sId,
- required String? companyName,
- required String? contactName,
- required String? emailId,
- required String? address,
- required String? mobileNumber,
- required String? pinCode,
- required String? country,
- required String? state,
- required String? city,
- required bool billingAddress,
- required bool shippingAddress,
- 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});