ApiBody.binaryBytes constructor
Binary upload from raw bytes (web-compatible).
Implementation
const ApiBody.binaryBytes(List<int> bytes, {String? mimeType})
: this(
type: ApiBodyType.binary,
binaryBytes: bytes,
binaryMimeType: mimeType ?? 'application/octet-stream',
);