PPCartAddress constructor

const PPCartAddress({
  1. String? firstName,
  2. String? lastName,
  3. String? line1,
  4. String? line2,
  5. String? city,
  6. String? state,
  7. String? postalCode,
  8. String? country,
  9. bool? isFullAddress,
  10. bool? isStoreAddress,
})

Implementation

const factory PPCartAddress({
  String? firstName,
  String? lastName,
  String? line1,
  String? line2,
  String? city,
  String? state,
  String? postalCode,
  String? country,
  bool? isFullAddress,
  bool? isStoreAddress,
}) = _PPCartAddress;