endIcon property

Widget? endIcon
final

For specifying the widget to be placed at the end of the trimmer area. You can pass null for hiding the widget.

By default it is set as:

Icon(
  Icons.arrow_forward_ios_rounded,
  color: Colors.white,
  size: 16,
)

Implementation

final Widget? endIcon;