allowCut method
Implementation
NikuTextField allowCut([bool value = false]) {
this._toolbarOptions = ToolbarOptions(
copy: this._toolbarOptions?.copy ?? true,
cut: value,
paste: this._toolbarOptions?.paste ?? true,
selectAll: this._toolbarOptions?.selectAll ?? true);
return this;
}