TrackStatsResponse constructor

TrackStatsResponse({
  1. required int durationSeconds,
  2. required String trackType,
})

Returns a new TrackStatsResponse instance.

Implementation

TrackStatsResponse({
  required this.durationSeconds,
  required this.trackType,
});