TableMeta class

Metadata for table elements.

Represents table formatting information including column alignment and header row presence in Markdown documents.

Constructors

TableMeta({required List<String> alignment, bool hasHeader = true})
Creates a TableMeta instance.
const
TableMeta.fromJson(Map<String, dynamic> json)
Creates from JSON map.
factory

Properties

alignment List<String>
The alignment for each column: 'left', 'center', or 'right'.
final
hashCode int
The hash code for this object.
no setteroverride
hasHeader bool
Whether the table has a header row.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

copyWith({List<String>? alignment, bool? hasHeader}) TableMeta
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