getIconColor method

Future<Color?> getIconColor(
  1. {required AppModel appModel,
  2. required DictionaryHeading heading}
)

If non-null, sets a custom enabled color that this action should have for a certain condition in the application. By default, this is the foreground color.

Implementation

Future<Color?> getIconColor({
  required AppModel appModel,
  required DictionaryHeading heading,
}) async {
  return null;
}