title method

  1. @override
Abbr title(
  1. String value
)
override

Sets the element's title (tooltip text).

Example:

Button().title('Click to submit')('Submit')

Implementation

@override
Abbr title(String value) {
  attr('title', StringAttribute(value));
  return this;
}