FmAddress constructor

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

Implementation

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