ShippingConsignee constructor

ShippingConsignee({
  1. required String personName,
  2. required String mobile,
  3. required String emailAddress,
  4. required String lineAddress,
  5. required String cityName,
  6. String? postalCode,
  7. required String countryCode,
})

Implementation

ShippingConsignee({
  required this.personName,
  required this.mobile,
  required this.emailAddress,
  required this.lineAddress,
  required this.cityName,
  this.postalCode,
  required this.countryCode,
});