getIconColor method
- {required AppModel appModel,
- 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;
}