get method
Retrieve a FaderModel with it's id, cached
Implementation
@override
Future<FaderModel?> 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;
}