FormData constructor

FormData({
  1. String boundaryName = _boundaryName,
  2. bool camelCaseContentDisposition = false,
})

Implementation

FormData({
  this.boundaryName = _boundaryName,
  this.camelCaseContentDisposition = false,
}) {
  _init();
}