ReadingQuestionsProvider constructor

ReadingQuestionsProvider(
  1. String topicId
)

Reading questions for active reading in the lesson viewer.

Copied from readingQuestions.

Implementation

ReadingQuestionsProvider(String topicId)
  : this._internal(
      (ref) => readingQuestions(ref as ReadingQuestionsRef, topicId),
      from: readingQuestionsProvider,
      name: r'readingQuestionsProvider',
      debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product')
          ? null
          : _$readingQuestionsHash,
      dependencies: ReadingQuestionsFamily._dependencies,
      allTransitiveDependencies:
          ReadingQuestionsFamily._allTransitiveDependencies,
      topicId: topicId,
    );