CircleButton constructor Null safety
- {Key? key,
- Widget? child,
- double? width,
- double? height,
- Function? onTap,
- EdgeInsets padding = const EdgeInsets.symmetric(horizontal: 9, vertical: 6),
- EdgeInsets margin = EdgeInsets.zero,
- Color? backgroundColor = Colors.white}
Implementation
CircleButton({
Key? key,
this.child,
this.width,
this.height,
this.onTap,
this.padding = const EdgeInsets.symmetric(horizontal: 9, vertical: 6),
this.margin = EdgeInsets.zero,
this.backgroundColor = Colors.white,
}) : super(key: key);