download method Null safety
- String fileName
Implementation
Future<NCMBFile> download(String fileName) async {
NCMBRequest r = new NCMBRequest();
Map response =
await r.exec('GET', super.name, objectId: fileName, multipart: true);
var f = NCMBFile();
f.set('blob', response['data']);
return f;
}