TrackingLocation constructor

TrackingLocation(
  1. dynamic objectType,
  2. dynamic mode,
  3. String? city,
  4. String? country,
  5. String? state,
  6. String? zip
)

Implementation

TrackingLocation(
  objectType,
  mode,
  this.city,
  this.country,
  this.state,
  this.zip,
) : super(objectType, mode);