setAnchorPoint method

Future<void> setAnchorPoint(
  1. double anchorU,
  2. double anchorV
)

Implementation

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