showThumbnailView method
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);
}