hasVideo method

Future<bool?> hasVideo()

Implementation

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