CloseButton constructor

const CloseButton({
  1. double? width,
  2. double? height,
  3. double? iconSize,
  4. Color? color,
  5. Color? iconColor,
  6. Key? key,
})

Implementation

const CloseButton(
    {double? width, double? height, double? iconSize, Color? color, Color? iconColor, Key? key})
    : _width = width,
      _height = height,
      _iconSize = iconSize,
      _color = color,
      _iconColor = iconColor,
      super(key: key);