ShippingAddressResponse constructor

ShippingAddressResponse({
  1. String? status,
  2. String? message,
  3. ShippingAddressData? data,
})

Implementation

ShippingAddressResponse({
    this.status,
    this.message,
    this.data,
});