FloatingIcon constructor

const FloatingIcon({
  1. Key? key,
  2. Color? bgColor,
  3. Color? iconColor,
  4. IconData? icon,
  5. bool isTopLeft = false,
  6. Function? onPressed,
})

Implementation

const FloatingIcon(
    {Key? key,
    this.bgColor,
    this.iconColor,
    this.icon,
    this.isTopLeft = false,
    this.onPressed})
    : super(key: key);