CurrentTripDataResponse constructor

CurrentTripDataResponse(
  1. GpsModel? currentLocation,
  2. TripState? currentTripState,
  3. TripState? previousTripState,
  4. double? totalDistanceTravelled,
  5. int? tripDetectionStartTime,
  6. int? tripDuration,
  7. GpsModel? tripEndLocation,
  8. int? tripEndTime,
  9. String? tripId,
  10. TripMode? tripMode,
  11. GpsModel? tripStartLocation,
  12. TripStartMode? tripStartMode,
  13. int? tripStartTime,
)

Implementation

CurrentTripDataResponse(
    this.currentLocation,
    this.currentTripState,
    this.previousTripState,
    this.totalDistanceTravelled,
    this.tripDetectionStartTime,
    this.tripDuration,
    this.tripEndLocation,
    this.tripEndTime,
    this.tripId,
    this.tripMode,
    this.tripStartLocation,
    this.tripStartMode,
    this.tripStartTime);