putContent method
Put an asset id of value content and mimeType.
Implementation
String? putContent(String id, String content, MimeType mimeType) {
if (isEmptyString(id)) return null;
var blob = Blob(
[content.toJS].toJS,
BlobPropertyBag(type: mimeType.toString()),
);
return putBlob(id, blob);
}