studentQueryServiceProvider top-level property
final
Provides the singleton StudentQueryService instance.
Implementation
final studentQueryServiceProvider = Provider<StudentQueryService>((ref) {
if (ref.watch(isDemoProvider)) {
return MockStudentQueryService();
}
return NtutStudentQueryService();
});