reference method

Future<String?> reference(
  1. String filename
)

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;
  }
}