getSubPathList method
Request subpaths for the album.
An empty list will always be returned on Android.
Implementation
Future<List<AssetPathEntity>> getSubPathList() async {
if (Platform.isIOS || Platform.isMacOS) {
return plugin.getSubPathEntities(this);
}
return <AssetPathEntity>[];
}