getWorkoutStream abstract method

  1. @Get(path: 'timeseries/workouts/{workout_id}/stream')
Future<Response<WorkoutStreamResponse>> getWorkoutStream(
  1. @Path('workout_id') String workoutId
)

Implementation

@Get(path: 'timeseries/workouts/{workout_id}/stream')
Future<Response<WorkoutStreamResponse>> getWorkoutStream(
  @Path('workout_id') String workoutId,
);