allowSelectAll method
Equivalent to
TextFormField(
toolbarOptions: ToolbarOptions(
selectAll: input
)
)
Implementation
NikuTextField allowSelectAll([bool value = true]) {
_toolbarOptions = ToolbarOptions(
copy: _toolbarOptions?.copy ?? true,
cut: _toolbarOptions?.cut ?? true,
paste: _toolbarOptions?.paste ?? true,
selectAll: value,
);
return this;
}