getDismissIconImage method

Icon getDismissIconImage()

Implementation

Icon getDismissIconImage() {
  if (highlighted) {
    return const Icon(
      FluentIcons.dismiss_12_filled,
      color: TUIDefaultColors.onSecondary,
      size: 12,
    );
  } else {
    return const Icon(
      FluentIcons.dismiss_12_filled,
      size: 12,
    );
  }
}