rotate method

Future<void> rotate(
  1. double angle
)

旋转

单位为度

Implementation

Future<void> rotate(double angle) async {
  await kMethodChannel.invokeMethod('UIView::rotate', {
    '__this__': this,
    'angle': angle,
  });
}