CustomRecord class final
An application-defined record that is omitted from model context by default.
Ported from pi's CustomEntry.
- Inheritance
-
- Object
- SessionRecord
- CustomRecord
Constructors
- CustomRecord({required String id, required String? parentId, required DateTime timestamp, required String customType, Object? data})
-
Creates a CustomRecord.
const
Properties
- customType → String
-
Application-defined discriminator.
final
- data → Object?
-
Application-defined payload.
final
- hashCode → int
-
The hash code for this object.
no setterinherited
- id → String
-
Unique record id (short random id generated by the storage).
finalinherited
- parentId → String?
-
Id of the parent record, or
nullfor a tree root.finalinherited - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- timestamp → DateTime
-
When the record was created.
finalinherited
- type → String
-
The type discriminator written to JSON (pi's
typefield).no setteroverride
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
payloadJson(
) → Map< String, dynamic> -
Type-specific fields merged into toJson by subclasses.
override
-
toJson(
) → Map< String, dynamic> -
Serializes to a JSON map with the
typediscriminator (pi shape).inherited -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited