MIconButton constructor

const MIconButton({
  1. Key? key,
  2. double radius = 32,
  3. EdgeInsets padding = const EdgeInsets.all(12),
  4. Color color = Colors.white,
  5. required Widget child,
  6. dynamic onTap()?,
})

Implementation

const MIconButton({Key? key, this.radius = 32,this.padding = const EdgeInsets.all(12), this.color = Colors.white, required this.child, this.onTap}) : super(key: key);