showThumbnailView method

Future<void> showThumbnailView(
  1. bool editMode
)

Displays the thumbnail view. When editMode is true, the page enters edit mode, allowing operations such as insert, delete, extract, etc.

Example:

await controller.showThumbnailView(false);

Implementation

Future<void> showThumbnailView(bool editMode) async {
  await _channel.invokeMethod('show_thumbnail_view', editMode);
}