otherSort method

int otherSort(
  1. AssetPathEntity path1,
  2. AssetPathEntity path2
)

Implementation

int otherSort(AssetPathEntity path1, AssetPathEntity path2) {
  return path1.name.compareTo(path2.name);
}