edaxRotate method

void edaxRotate(
  1. int angle
)

Rotate.

angle: 90 or 180 or 270.

Implementation

void edaxRotate(final int angle) {
  if (![90, 180, 270].contains(angle)) {
    throw Exception('angle of edaxRotate supports only 90,180,270');
  }
  _bindings.edax_rotate(angle);
}