HintTable class

This class represents a table that manages the header information and rows or cells for each hint token.

The headers section contains metadata for the token analysis. The rows section contains cell information where token hint information is set. The references contains a reference index to the word or sentence before it was split, excluding this token.

Constructors

HintTable.from({required List<HintHeader> headers, required List<HintRow> rows, required List<int> references})
Returns the new instance of HintTable based on arguments.

Properties

hashCode int
The hash code for this object.
no setteroverride
headers List<HintHeader>
The hint headers
final
references List<int>
The references
final
rows List<HintRow>
The hint rows
final
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
toString() String
A string representation of this object.
override

Operators

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