reference method
Retrieves the reference path for the specified filename
.
Returns a Future that completes with the reference path or null
if an error occurs.
Implementation
Future<String?> reference(String filename) async {
try {
return _ref(filename);
} catch (_) {
return null;
}
}