Builder class
Class that helps building flat buffers.
Constructors
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- initialSize → int
-
final
- offset → int
-
The number of bytes that have been written to the buffer so far. The
most recently written byte is this many bytes from the end of the buffer.
no setter
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- size → int
-
no setter
Methods
-
addBool(
int field, bool? value, [bool? def]) → void -
Add the
field
with the given booleanvalue
. The field is not added if thevalue
is equal todef
. Booleans are stored as 8-bit fields with0
forfalse
and1
fortrue
. -
addFloat32(
int field, double? value, [double? def]) → void -
Add the
field
with the given 32-bit floatvalue
. The field is not added if thevalue
is equal todef
. -
addFloat64(
int field, double? value, [double? def]) → void -
Add the
field
with the given 64-bit doublevalue
. The field is not added if thevalue
is equal todef
. -
addInt16(
int field, int? value, [int? def]) → void -
Add the
field
with the given 32-bit signed integervalue
. The field is not added if thevalue
is equal todef
. -
addInt32(
int field, int? value, [int? def]) → void -
Add the
field
with the given 32-bit signed integervalue
. The field is not added if thevalue
is equal todef
. -
addInt64(
int field, int? value, [double? def]) → void -
Add the
field
with the given 64-bit unsigned integervalue
. The field is not added if thevalue
is equal todef
. -
addInt8(
int field, int? value, [int? def]) → void -
Add the
field
with the given 8-bit signed integervalue
. The field is not added if thevalue
is equal todef
. -
addOffset(
int field, int? offset) → void -
Add the
field
referencing an object with the givenoffset
. -
addStruct(
int field, int offset) → void -
addUint16(
int field, int? value, [int? def]) → void -
Add the
field
with the given 32-bit unsigned integervalue
. The field is not added if thevalue
is equal todef
. -
addUint32(
int field, int? value, [int? def]) → void -
Add the
field
with the given 32-bit unsigned integervalue
. The field is not added if thevalue
is equal todef
. -
addUint64(
int field, int? value, [double? def]) → void -
Add the
field
with the given 64-bit unsigned integervalue
. The field is not added if thevalue
is equal todef
. -
addUint8(
int field, int? value, [int? def]) → void -
Add the
field
with the given 8-bit unsigned integervalue
. The field is not added if thevalue
is equal todef
. -
endStructVector(
int count) → int - Finish a Struct vector. Most callers should preferto use writeListOfStructs.
-
endTable(
) → int - End the current table and return its offset.
-
finish(
int offset, [String? fileIdentifier]) → Uint8List -
Finish off the creation of the buffer. The given
offset
is used as the root object offset, and usually references directly or indirectly every written object. IffileIdentifier
is specified (and notnull
), it is interpreted as a 4-byte Latin-1 encoded string that should be placed at bytes 4-7 of the file. -
lowFinish(
) → Uint8List - This method low level method can be used to return a raw piece of the buffer after using the the put* methods.
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
pad(
int howManyBytes) → void - Zero-pads the buffer, which may be required for some struct layouts.
-
putFloat32(
double value) → void - Writes a Float32 to the tail of the buffer after preparing space for it.
-
putFloat64(
double value) → void - Writes a Float64 to the tail of the buffer after preparing space for it.
-
putInt16(
int value) → void - Writes a Uint16 to the tail of the buffer after preparing space for it.
-
putInt32(
int value) → void - Writes a Uint32 to the tail of the buffer after preparing space for it.
-
putInt64(
int value) → void - Writes a Int64 to the tail of the buffer after preparing space for it.
-
putInt8(
int value) → void - Writes a Uint8 to the tail of the buffer after preparing space for it.
-
putUint16(
int value) → void - Writes a Uint16 to the tail of the buffer after preparing space for it.
-
putUint32(
int value) → void - Writes a Uint32 to the tail of the buffer after preparing space for it.
-
putUint64(
int value) → void - Writes a Uint64 to the tail of the buffer after preparing space for it.
-
putUint8(
int value) → void - Writes a Uint8 to the tail of the buffer after preparing space for it.
-
reset(
) → void - Reset the builder and make it ready for filling a new buffer.
-
startTable(
int numFields) → void - Start a new table. Must be finished with endTable invocation.
-
toString(
) → String -
A string representation of this object.
inherited
-
writeList(
List< int> values) → int -
Write the given list of
values
. -
writeListBool(
List< bool> values) → int -
Write the given list of bools as unsigend 8-bit integer
values
. -
writeListFloat32(
List< double> values) → int -
Write the given list of 32-bit float
values
. -
writeListFloat64(
List< double> values) → int -
Write the given list of 64-bit float
values
. -
writeListInt16(
List< int> values) → int -
Write the given list of signed 16-bit integer
values
. -
writeListInt32(
List< int> values) → int -
Write the given list of signed 32-bit integer
values
. -
writeListInt64(
List< int> values) → int -
Write the given list of signed 64-bit integer
values
. -
writeListInt8(
List< int> values) → int -
Write the given list of signed 8-bit integer
values
. -
writeListOfStructs(
List< ObjectBuilder> structBuilders) → int - Writes a list of Structs to the buffer, returning the offset
-
writeListUint16(
List< int> values) → int -
Write the given list of unsigned 16-bit integer
values
. -
writeListUint32(
List< int> values) → int -
Write the given list of unsigned 32-bit integer
values
. -
writeListUint64(
List< int> values) → int -
Write the given list of signed 64-bit integer
values
. -
writeListUint8(
List< int> values) → int -
Write the given list of unsigned 8-bit integer
values
. -
writeString(
String value) → int -
Write the given string
value
and return its offset.
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited