hideUi method

Future<void> hideUi()

android 隐藏Android播放器的UI控制器

Implementation

Future<void> hideUi() async {
  exec(
      androidCall: () {
        _channel.invokeMethod('hideUi');
      },
      iosCall: () {});
}