QudsIconWithShadow constructor

const QudsIconWithShadow({
  1. Key? key,
  2. required IconData iconData,
  3. double? size,
  4. Color? color,
  5. Color? shadowColor,
  6. TextDirection? textDirection,
  7. Offset? offset,
})

Create an instance of QudsIconWithShadow.

Implementation

const QudsIconWithShadow(
    {Key? key,
    required this.iconData,
    this.size,
    this.color,
    this.shadowColor,
    this.textDirection,
    this.offset})
    : super(key: key);