textPlaceholderSetters property

Map<String, Function> get textPlaceholderSetters

Implementation

Map<String, Function> get textPlaceholderSetters => {
      'placeholder': (value) => placeholder = Utils.optionalString(value),
      'placeholderStyle': (style) =>
          placeholderStyle = Utils.getTextStyle(style),
      // deprecated. Use placeholder & placeholderStyle
      'hintText': (value) => hintText = Utils.optionalString(value),
      'hintStyle': (style) => hintStyle = Utils.getTextStyle(style),
    };