KruzrAddress constructor

KruzrAddress({
  1. required String? city,
  2. required String? country,
  3. required String? district,
  4. required String? postalCode,
  5. required String? state,
  6. required String? street,
  7. required String? readableAddress,
})

Implementation

KruzrAddress({
  required this.city,
  required this.country,
  required this.district,
  required this.postalCode,
  required this.state,
  required this.street,
  required this.readableAddress,
});