HttpFile.fromBytes constructor

HttpFile.fromBytes(
  1. String name,
  2. Uint8List bytes
)

FromBytes constructor

Implementation

HttpFile.fromBytes(String name, Uint8List bytes) {
  _name = name;
  _bytes = bytes;
}