externalImageEditors property
Allow add custom image editors from external call.
Sample usage:
configs.externalImageEditors'external_image_editor'
= EditorParams(
title: 'external_image_editor',
icon: Icons.wb_sunny_outlined,
onEditorEvent: (
{required File file,
required String title,
int maxWidth = 1080,
int maxHeight = 1920,
ImagePickerConfigs? configs}) async => await
Navigator.of(context).push(MaterialPageRoute
Implementation
Map<String, EditorParams> externalImageEditors = {};