uploadVideo method

Future<XRPCResponse<VideoUploadVideoOutput>> uploadVideo({
  1. required Uint8List bytes,
  2. Map<String, String>? $headers,
  3. Map<String, String>? $parameters,
})

Upload a video to be processed then stored on the PDS.

Implementation

Future<XRPCResponse<VideoUploadVideoOutput>> uploadVideo({
  required Uint8List bytes,
  Map<String, String>? $headers,
  Map<String, String>? $parameters,
}) async => await appBskyVideoUploadVideo(
  bytes: bytes,
  $parameters: $parameters,
  $ctx: _ctx,
  $headers: $headers,
);