effectiveEditor property

  1. @override
FdcEditorType get effectiveEditor
override

Built-in editor mode used when this column enters edit state.

Implementation

@override
FdcEditorType get effectiveEditor {
  return control == FdcBooleanControl.switchControl
      ? FdcEditorType.switcher
      : FdcEditorType.checkbox;
}