create static method

Future<UIView> create()

Implementation

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