IndicatorIcon.status constructor

const IndicatorIcon.status({
  1. Key? key,
  2. required IconData iconData,
  3. Color? iconColor,
  4. Color? statusDotColor,
  5. bool showBadge = true,
})

Implementation

const IndicatorIcon.status({
  Key? key,
  required IconData iconData,
  Color? iconColor,
  Color? statusDotColor,
  bool showBadge = true,
}) : this._internal(
        key: key,
        iconData: iconData,
        iconColor: iconColor,
        type: _IndicatorIconType.status,
        statusDotColor: statusDotColor,
        showBadge: showBadge,
      );