IndicatorIcon constructor

const IndicatorIcon({
  1. Key? key,
  2. required IconData iconData,
  3. Color? iconColor,
})

Implementation

const IndicatorIcon({
  Key? key,
  required IconData iconData,
  Color? iconColor,
}) : this._internal(
        key: key,
        iconData: iconData,
        iconColor: iconColor,
        type: _IndicatorIconType.iconOnly,
        showBadge: false,
      );