insertImage method

dynamic insertImage(
  1. String url, {
  2. String? alt,
  3. int? width,
  4. int? height,
  5. int? rotation,
})

The rotation parameter is used to signal that the image is rotated and should be rotated by CSS by given value. Rotation can be one of the following values: 0, 90, 180, 270.

Implementation

insertImage(String url,
    {String? alt, int? width, int? height, int? rotation}) async {
  if (rotation == null) rotation = 0;
  if (width == null) width = 300;
  if (height == null) height = 300;
  if (alt == null) alt = '';
  await executeJavascript(
    "insertImage('$url', '$alt', '$width', '$height', $rotation);",
  );
}