FormData.fromMap constructor
FormData.fromMap(
- Map<
String, dynamic> map, [ - ListFormat listFormat = ListFormat.multi,
- bool camelCaseContentDisposition = false,
- String boundaryName = _boundaryName,
Implementation
FormData.fromMap(
Map<String, dynamic> map, [
ListFormat listFormat = ListFormat.multi,
this.camelCaseContentDisposition = false,
this.boundaryName = _boundaryName,
]) {
_init(fromMap: map, listFormat: listFormat);
}