FormData.fromMap constructor

FormData.fromMap(
  1. Map<String, dynamic> map, [
  2. ListFormat listFormat = ListFormat.multi,
  3. bool camelCaseContentDisposition = false,
  4. String boundaryName = _boundaryName,
])

Create FormData from a Map.

Implementation

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