renderSuggestionTileTrailing method

Widget? renderSuggestionTileTrailing(
  1. BuildContext context,
  2. KeyedOption<K, T> option,
  3. bool isSelected,
  4. SelectOption<K, T> selectOption,
)

Renders the suffix for an item that shows up in the list of options. If this method returns null, then the leading spot will not be rendered

Implementation

Widget? renderSuggestionTileTrailing(
  BuildContext context,
  KeyedOption<K, T> option,

  /// Whether the item we're building the trailing for is currently selected
  bool isSelected,

  /// A callback that can be used to change the bound form control selection
  SelectOption<K, T> selectOption,
) {
  return null;
}