addFile method
Implementation
Future<FormDataHelper> addFile(Map<String, dynamic> fileJson) async {
var file = await MultipartFile.fromFile(
fileJson['path'],
filename: fileJson['fileName'],
contentType: MediaType.parse(fileJson['contentType']),
);
_data[fileJson['key']] = file;
return this;
}