Record class

Constructors

Record(int startAddress, List<int?> data)
Record.prefix(int startAddress, Iterable<int?> data, int size)
factory
Record.suffix(int startAddress, Iterable<int?> data, int size)
factory

Properties

data List<int?>
The data. null value means unknown.
final
endAddress 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
startAddress int
final

Methods

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

Operators

operator ==(Object other) bool
The equality operator.
inherited
operator [](int address) int?
operator []=(int address, int value) → void