embedImage method

Future embedImage(
  1. String imgSrc
)

embedImage method is used to insert image to the editor

Implementation

Future embedImage(String imgSrc) async {
  return await _editorKey?.currentState?._embedImage(imgSrc: imgSrc);
}