BlockNoteStyledText constructor

const BlockNoteStyledText({
  1. String type = 'text',
  2. required String text,
  3. Map<String, dynamic>? styles,
})

Creates a new styled text instance.

Implementation

const BlockNoteStyledText({
  this.type = 'text',
  required this.text,
  this.styles,
});