FMAddress constructor

const FMAddress({
  1. required String iso,
  2. required String state,
  3. required String suburb,
  4. required String county,
  5. required String country,
  6. required String postcode,
  7. required String countryCode,
  8. required String residential,
  9. required String stateDistrict,
})

Implementation

const FMAddress({
  required this.iso,
  required this.state,
  required this.suburb,
  required this.county,
  required this.country,
  required this.postcode,
  required this.countryCode,
  required this.residential,
  required this.stateDistrict,
});