play method

Future<void> play()

Implementation

Future<void> play() async {
  if (_channel == null || _isDisposed) return;
  try {
    await _channel!.invokeMethod('play');
  } catch (e) {
    debugPrint('InlineVideoPlayerController.play error: $e');
  }
}