iSchoolPlusServiceProvider top-level property
final
Provides the singleton ISchoolPlusService instance.
Implementation
final iSchoolPlusServiceProvider = Provider<ISchoolPlusService>((ref) {
if (ref.watch(isDemoProvider)) {
return MockISchoolPlusService();
}
return NtutISchoolPlusService();
});