MapxusLocationEvent constructor

MapxusLocationEvent({
  1. required String type,
  2. required double latitude,
  3. required double longitude,
  4. required double accuracy,
  5. String? venueId,
  6. String? buildingId,
  7. String? floor,
  8. required int timestamp,
})

Implementation

MapxusLocationEvent({
  required this.type,
  required this.latitude,
  required this.longitude,
  required this.accuracy,
  this.venueId,
  this.buildingId,
  this.floor,
  required this.timestamp,
});