RoundedIconButton constructor

const RoundedIconButton({
  1. Key? key,
  2. dynamic onPressed()?,
  3. required Color borderColor,
  4. double? borderWidth,
  5. required Widget child,
  6. Color? bgColor,
})

Implementation

const RoundedIconButton({
  Key? key,
  this.onPressed,
  required this.borderColor,
  this.borderWidth,
  required this.child,
  this.bgColor,
}) : super(key: key);