PrefillAddress constructor

PrefillAddress({
  1. required String? city,
  2. String? region,
  3. required String? postalCode,
  4. String? street,
  5. required String? address,
})

Implementation

PrefillAddress({
  required this.city,
  this.region,
  required this.postalCode,
  this.street,
  required this.address,
  // this.extendedAddress,
});