CropRotateEditor.network constructor

CropRotateEditor.network(
  1. String networkUrl, {
  2. Key? key,
  3. required CropRotateEditorInitConfigs initConfigs,
})

Constructs a CropRotateEditor widget with an image loaded from a network URL.

Implementation

factory CropRotateEditor.network(
  String networkUrl, {
  Key? key,
  required CropRotateEditorInitConfigs initConfigs,
}) {
  return CropRotateEditor._(
    key: key,
    editorImage: EditorImage(networkUrl: networkUrl),
    initConfigs: initConfigs,
  );
}