rotateAsync method
Implementation
Future<Mat> rotateAsync(int rotationCode, {bool inplace = false}) async {
final dst = inplace ? this : clone();
return cvRunAsync0<Mat>(
(callback) => ccore.cv_rotate(ref, dst.ref, rotationCode, callback),
(c) => c.complete(dst),
);
}