text property

  1. @Input('materialTooltip')
set text (String text)

The text to show in the tooltip.

Implementation

@Input('materialTooltip')
set text(String text) {
  _lastText = text;
  _inkTooltip?.text = text;
}