getUniqueName method

  1. @override
String getUniqueName()
override

Returns a unique name for the asset, combining the package name and file name.

Implementation

@override
String getUniqueName() {
  if(exists()) {
    return _asset!.getUniqueName();
  }

  throw _throwIfNotFound();
}