get method
Retrieve a TutorialModel with it's id, cached
Implementation
@override
Future<TutorialModel?> get(String? id, {Function(Exception)? onError}) async {
var value = fullCache[id];
if (value != null) return refreshRelations(value);
value = await reference.get(id, onError: onError);
fullCache[id] = value;
return value;
}