uploadVideo method
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,
);