emit_editingComplete property

  1. @protected
  2. @nonVirtual
void Function() emit_editingComplete
inherited

Implementation

@protected
@nonVirtual
void Function() get emit_editingComplete {
  Function? func = this.widget.$tryGetEmitHandler("editingComplete");
  //if (func == null) {
  //	return () {
  //	};
  //}
  //return func as void Function();

  return () {
    this.widget.$onEmitHandlerInvoked("editingComplete");
    func?.call();
  };
}