placeholder property

String get placeholder

Implementation

String get placeholder => textInput.placeholder;
set placeholder (String text)

Implementation

set placeholder(String text) {
  textInput.placeholder = text;
}