BinaryReader class

Constructors

BinaryReader(Uint8List _buffer)

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
readBool(int offset, {bool staticOffset = true}) bool
readBoolList(int offset) List<bool>?
readBoolOrNull(int offset, {bool staticOffset = true}) bool?
readBoolOrNullList(int offset) List<bool?>?
readBytes(int offset, {bool staticOffset = true}) Uint8List
readBytesOrNull(int offset, {bool staticOffset = true}) Uint8List?
readDateTime(int offset, {bool staticOffset = true}) DateTime
readDateTimeList(int offset) List<DateTime>?
readDateTimeOrNull(int offset, {bool staticOffset = true}) DateTime?
readDateTimeOrNullList(int offset) List<DateTime?>?
readDouble(int offset, {bool staticOffset = true}) double
readDoubleList(int offset) List<double>?
readDoubleOrNull(int offset, {bool staticOffset = true}) double?
readDoubleOrNullList(int offset) List<double?>?
readFloat(int offset, {bool staticOffset = true}) double
readFloatList(int offset) List<double>?
readFloatOrNull(int offset, {bool staticOffset = true}) double?
readFloatOrNullList(int offset) List<double?>?
readInt(int offset, {bool staticOffset = true}) int
readIntList(int offset) List<int>?
readIntOrNull(int offset, {bool staticOffset = true}) int?
readIntOrNullList(int offset) List<int?>?
readLong(int offset, {bool staticOffset = true}) int
readLongList(int offset) List<int>?
readLongOrNull(int offset, {bool staticOffset = true}) int?
readLongOrNullList(int offset) List<int?>?
readString(int offset, {bool staticOffset = true}) String
readStringList(int offset) List<String>?
readStringOrNull(int offset, {bool staticOffset = true}) String?
readStringOrNullList(int offset) List<String?>?
toString() String
A string representation of this object.
inherited

Operators

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

Constants

utf8Decoder → const Utf8Decoder