uploadVideo method

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

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

Implementation

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