BlurEditor.memory constructor

BlurEditor.memory(
  1. Uint8List byteArray, {
  2. Key? key,
  3. required BlurEditorInitConfigs initConfigs,
})

Constructs a BlurEditor widget with image data loaded from memory.

Implementation

factory BlurEditor.memory(
  Uint8List byteArray, {
  Key? key,
  required BlurEditorInitConfigs initConfigs,
}) {
  return BlurEditor._(
    key: key,
    editorImage: EditorImage(byteArray: byteArray),
    initConfigs: initConfigs,
  );
}