GeoPointAddress constructor

const GeoPointAddress({
  1. required String countryIso2,
  2. String? state,
  3. String? city,
  4. String? street,
})

Geo Point Address constructor.

Implementation

const GeoPointAddress({
  required this.countryIso2,
  this.state,
  this.city,
  this.street,
}) : super._();