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