RamFileData class

Constructors

RamFileData.fromBytes(Uint8List bytes)
factory
RamFileData.outputBuffer({int subListSize = 1024 * 1024})

Properties

content List<List<int>>
no setter
hashCode int
The hash code for this object.
no setterinherited
length int
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

clear() → void
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
readAsBytes() List<int>
readIntoSync(Uint8List buffer, int start, int? end) int
toString() String
A string representation of this object.
inherited
writeFromSync(List<int> buffer, [int start = 0, int? end]) int

Operators

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

Static Methods

fromStream(Stream<List<int>> source, int fileLength, {int? subListMaxSize}) Future<RamFileData>