CropRotateEditor.memory constructor

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

Constructs a CropRotateEditor widget with image data loaded from memory.

Implementation

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