KwikAddress constructor
const
KwikAddress({
- required String id,
- required String label,
- required String address,
- required String name,
- required String phone,
- String? source,
- String? email,
- String? houseNo,
- String? area,
- String? landmark,
- String? pincode,
- String? city,
- String? state,
- String? country,
- String? flatHouseNo,
- String? addressLine1,
- String? addressLine2,
- String? addressLine3,
Implementation
const KwikAddress({
required this.id,
required this.label,
required this.address,
required this.name,
required this.phone,
this.source,
this.email,
this.houseNo,
this.area,
this.landmark,
this.pincode,
this.city,
this.state,
this.country,
this.flatHouseNo,
this.addressLine1,
this.addressLine2,
this.addressLine3,
});