get static method

Implementation

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