multipartFileFromUint8List static method
Implementation
static Future<MultipartFile> multipartFileFromUint8List(
String fieldName,
Uint8List bytes, {
String? filename,
MediaType? contentType,
}) async => MultipartFile.fromBytes(fieldName, bytes, contentType: contentType, filename: filename);