disabled property

bool disabled

Implementation

bool get disabled => _disabled;
  1. @Input()
void disabled=(bool v)

Implementation

@Input()
set disabled(bool v) {
  _disabled = v;
  // The editor may not have been created yet
  if (quillEditor != null) {
    quillEditor!.enable(!v);
  }
}