FdcDataRecordKey class

Stable dataset/business key used for adapter-aware row selection.

The key preserves dataset key-field order through fieldNames and stores the corresponding field values in values. It is intentionally JSON-friendly so Adapters can forward selected keys to backend services without exposing internal row ids.

Constructors

FdcDataRecordKey({required List<String> fieldNames, required List<Object?> values})
Creates a FdcDataRecordKey.

Properties

fieldNames List<String>
Dataset field names included in this object.
final
hashCode int
The hash code for this object.
no setteroverride
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
values List<Object?>
Field values carried by this object.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toMap() Map<String, Object?>
Converts the ordered key fields and values to a field-name map.
toString() String
A string representation of this object.
override

Operators

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