LayoutAwareParseResult class

Result of parsing a document with layout awareness.

Contains both the parsed data and the extracted key-level metadata for preserving layout information during format conversions.

Constructors

LayoutAwareParseResult({required Map<String, dynamic> data, Map<String, dynamic>? keyMeta})
Creates a LayoutAwareParseResult instance.
const
LayoutAwareParseResult.fromJson(Map<String, dynamic> json)
Creates from JSON map.
factory

Properties

data Map<String, dynamic>
The parsed data map.
final
hashCode int
The hash code for this object.
no setteroverride
keyMeta Map<String, dynamic>?
The extracted key-level metadata.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

copyWith({Map<String, dynamic>? data, Map<String, dynamic>? keyMeta}) LayoutAwareParseResult
Creates a copy with updated values.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Converts to JSON map.
toString() String
A string representation of this object.
inherited

Operators

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