TextLine constructor

const TextLine({
  1. required Line line,
  2. required EmbedsBuilder embedBuilder,
  3. required DefaultStyles styles,
  4. required bool readOnly,
  5. required QuillController controller,
  6. required ValueChanged<String>? onLaunchUrl,
  7. required LinkActionPicker linkActionPicker,
  8. TextDirection? textDirection,
  9. CustomStyleBuilder? customStyleBuilder,
  10. List<String> customLinkPrefixes = const <String>[],
  11. Key? key,
})

Implementation

const TextLine({
  required this.line,
  required this.embedBuilder,
  required this.styles,
  required this.readOnly,
  required this.controller,
  required this.onLaunchUrl,
  required this.linkActionPicker,
  this.textDirection,
  this.customStyleBuilder,
  this.customLinkPrefixes = const <String>[],
  Key? key,
}) : super(key: key);