albumMenuBuilder abstract method

Widget albumMenuBuilder(
  1. BuildContext context,
  2. String selectedAlbum,
  3. Map<String, Tuple2<AssetPathEntity, Uint8List?>?> assets,
  4. ScrollController controller,
  5. bool scrollLock,
  6. double footerHeight,
  7. dynamic onSelect(
    1. AssetPathEntity asset
    ),
)

Builds the album menu of the image picker Contains a list of AssetEntity mapped to Uint8List's for thumbnails and information

Implementation

Widget albumMenuBuilder(BuildContext context, String selectedAlbum, Map<String, Tuple2<AssetPathEntity, Uint8List?>?> assets, ScrollController controller, bool scrollLock, double footerHeight, dynamic Function(AssetPathEntity asset) onSelect);