RequestBody.file constructor

RequestBody.file(
  1. String path
)

Implementation

factory RequestBody.file(String path) {
  return RequestBody._()
    .._type = _BodyType.raw
    .._file = path;
}