findAll method

Future<AndroidAssets?> findAll()

extracts assets from from assets/launcher_icons/android/* provided the class was created with AndroidAssetsExtractor('assets/launcher_icons')

Implementation

Future<AndroidAssets?> findAll() async {
  final androidDirectory = Directory(_androidDirPath);

  if (androidDirectory.existsSync()) {
    return _extractAssetGroup(androidDirectory);
  } else {
    return null;
  }
}