create static method

Future<UIImageView> create(
  1. UIImage image
)
override

Implementation

static Future<UIImageView> create(UIImage image) async {
  final result = await kMethodChannel.invokeMethod<Ref>(
    'UIImageView::create',
    {'image': image},
  );
  return UIImageView()..refId = result?.refId;
}