trailingText property

String? get trailingText

Implementation

String? get trailingText => _trailingText;
  1. @Input()
set trailingText (String? value)

Any text to show at the trailing edge of the input -- e.g. a currency symbol or similar.

Implementation

@Input()
set trailingText(String? value) {
  _trailingText = value;
  // Possibly set by a directive and not a template. So default change
  // detection doesn't work without calling markForCheck.
  _changeDetector.markForCheck();
}