ARFFData class

Represents a data entry in an ARFF (Attribute-Relation File Format) file.

This class stores a single data entry consisting of a name-value pair associated with an attribute in the ARFF file.

Constructors

ARFFData({required String name, required String value})
Creates an ARFF data entry with the given name and value.

Properties

hashCode int
The hash code for this object.
no setterinherited
name String
The name of the attribute for this data entry.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value String
The value of the attribute for this data entry.
final

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