pickMedia method

Future<List<Map>> pickMedia({
  1. required String type,
  2. required bool multiple,
  3. int? maxItems,
})

Pure media picker (no classification). Default throws.

Implementation

Future<List<Map<dynamic, dynamic>>> pickMedia({
  required String type,
  required bool multiple,
  int? maxItems,
}) =>
    throw UnimplementedError(
        'pickMedia is not implemented by this platform');