get method
Implementation
@override
Future<TutorialEntryModel> get(String? id, {Function(Exception)? onError}) {
int index = _index(id!);
var completer = Completer<TutorialEntryModel>();
completer.complete(items[index]);
return completer.future;
}