BlockNoteTableContent class

BlockNote table content structure.

Constructors

BlockNoteTableContent({String type = 'tableContent', required List<BlockNoteTableRow> rows})
Creates a new table content instance.
const
BlockNoteTableContent.fromJson(Map<String, dynamic> json)
Creates a BlockNoteTableContent from a JSON map.
factory

Properties

hashCode → int
The hash code for this object.
no setteroverride
rows → List<BlockNoteTableRow>
Table rows containing cell content.
final
runtimeType → Type
A representation of the runtime type of the object.
no setterinherited
type → String
The table content type.
final

Methods

copyWith({String? type, List<BlockNoteTableRow>? rows}) → BlockNoteTableContent
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() → Map<String, dynamic>
Converts this table content to JSON.
toString() → String
A string representation of this object.
override

Operators

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