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