rotate static method

Future<Uint8List> rotate(
  1. Uint8List bytes,
  2. int rotate, {
  3. ImageFormat format = ImageFormat.jpeg,
})

Rotates and image.

Implementation

static Future<Uint8List> rotate(Uint8List bytes, int rotate,
    {ImageFormat format = ImageFormat.jpeg}) async {
  return ImageGeneral.rotate(bytes, rotate);
}