shareVideo method

Future<void> shareVideo({
  1. required int scene,
  2. String? title,
  3. String? description,
  4. Uint8List? thumbData,
  5. String? videoUrl,
  6. String? videoLowBandUrl,
})

分享 - 视频

Implementation

Future<void> shareVideo({
  required int scene,
  String? title,
  String? description,
  Uint8List? thumbData,
  String? videoUrl,
  String? videoLowBandUrl,
}) {
  throw UnimplementedError(
      'shareVideo({required scene, title, description, thumbData, videoUrl, videoLowBandUrl}) has not been implemented.');
}