getSubPathList method

Future<List<AssetPathEntity>> getSubPathList()

In android, always return empty list.

Implementation

Future<List<AssetPathEntity>> getSubPathList() async {
  if (!(Platform.isIOS || Platform.isMacOS)) {
    return [];
  }
  return PhotoManager._getSubPath(this);
}