appBskyVideoUploadVideo function
Upload a video to be processed then stored on the PDS.
Implementation
Future<XRPCResponse<VideoUploadVideoOutput>> appBskyVideoUploadVideo({
required Uint8List bytes,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $parameters,
}) async => await $ctx.post(
ns.appBskyVideoUploadVideo,
headers: {'Content-type': 'video/mp4', ...?$headers},
parameters: $parameters,
body: bytes,
to: const VideoUploadVideoOutputConverter().fromJson,
);