RichIconOptions constructor

RichIconOptions({
  1. Color? color,
  2. double? size,
  3. IconData? icon,
  4. String? iconName,
})

Implementation

RichIconOptions({this.color, this.size, this.icon, this.iconName})
    : assert(icon != null || iconName != null,
          'Either icon or iconName must be provided');