Value sets the value of the text field.
(value *string)
| 82 | |
| 83 | // Value sets the value of the text field. |
| 84 | func (t *Text) Value(value *string) *Text { |
| 85 | return t.Accessor(NewPointerAccessor(value)) |
| 86 | } |
| 87 | |
| 88 | // Accessor sets the accessor of the text field. |
| 89 | func (t *Text) Accessor(accessor Accessor[string]) *Text { |