getShortcutIcon method

IconData getShortcutIcon(
  1. BuildContext context
)

Returns the shortcut icon in the picker list row.

Implementation

IconData getShortcutIcon(BuildContext context) {
  final effectiveValue = shortcutIcon ?? Icons.folder_special;
  return effectiveValue;
}