labels property

Implementation

LiQuillTextEditorLabels get labels => _labels;
  1. @Input.new()
set labels (LiQuillTextEditorLabels? value)

Implementation

@Input()
set labels(LiQuillTextEditorLabels? value) {
  _labels = value ?? LiQuillTextEditorLabels.english;
  _handleToolbarConfigurationInputChanged();
}