DataParser class

Constructors

DataParser()

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
toString() String
A string representation of this object.
inherited

Operators

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

Static Methods

getGvtList(List<int>? gvtFile) List<Gvt>
Converts a list of integers representing GVT data into a list of Gvt objects.
getSeedListFromCFG(String input) List<Seed>
Get a list of seeds from a configuration string.
parseDataNode(List<int>? response, Seed seedActive) Node?
Parses the network response to extract Node information based on the provided active seed.
parseDataPendings(List<int>? response) List<Pending>?
Parses a network response containing pending transaction information into a list of Pending objects.
parseDataSeeds(List<int>? response) List<Seed>
Parses Seeds from the response string obtained from the NodeRequest.getNodeList.
parseSummaryData(Uint8List bytesSummaryPsk) List<SummaryData>
Extracts SummaryData from a Uint8List of bytes. Each set of summary data is expected to be 106 bytes. The method reads the bytes sequentially and creates a list of SummaryData objects. If the bytes are empty, an empty list is returned. If any error occurs during the process, an error message is printed to the console.