AdifRecord class

Represents a single ADIF record and its fields.

Constructors

AdifRecord()

Properties

hashCode int
The hash code for this object.
no setterinherited
isHeader bool
Indicates whether the record represents the ADIF header or ADIF data.
getter/setter pair
issues UnmodifiableListView<String>?
Issues that were encountered during the creation of this record.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

getFieldValue(String fieldName) String?
Returns the value of the named field, or null if no such field.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
setFieldValue(String fieldName, String fieldValue, [adifType fieldType = adifType.ADIFString]) → void
Sets the value of the named field to the given value.
toString() String
Returns the record as a string in the ADIF format.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited
operator [](String fieldName) String?
Returns the value of the field whose name is the index.