Part class

Denotes a single part of a multi-part request. Part parameters may not be null.

@POST("/post")
@MultiPart()
Future<String> example(
  @Part() int foo,
  { @Part(name: "bar") String barbar,
    @Part(contentType:'application/json') File file
  },
)
Annotations
  • @immutable

Constructors

Part({@Deprecated('future release') String? value, String? name, String? fileName, String? contentType})
const

Properties

contentType String?
final
fileName String?
If this field is a file, optionally specify it's name. otherwise the name will be derived from the actual file.
final
hashCode int
The hash code for this object.
no setterinherited
name String?
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value String?
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited