props property

Map<IconBooleanStyle, Map<bool?, IconProperties>> props
getter/setter pair

Implementation

static Map<IconBooleanStyle, Map<bool?, IconProperties>> props = {
  IconBooleanStyle.filled: {
    true: const IconProperties(Icons.check_circle, _validColor),
    false: const IconProperties(Icons.cancel, _invalidColor),
    null: const IconProperties(Icons.help, _unknownColor),
  },
  IconBooleanStyle.outlined: {
    true: const IconProperties(Icons.check_circle_outline, _validColor),
    false: const IconProperties(Icons.highlight_off, _invalidColor),
    null: const IconProperties(Icons.help_outline, _unknownColor),
  },
};