hasVideo method

Future<bool?> hasVideo()

Implementation

Future<bool?> hasVideo() async {
  if (_nativeChannel == null) {
    print('ERROR: MethodChannel is null');
    return false;
  }
  bool? hasVideo = await _nativeChannel!.invokeMethod("hasVideo");
  return hasVideo;
}