RadialButton constructor

RadialButton({
  1. Color buttonColor = Colors.orange,
  2. required Icon icon,
  3. required Function onPress,
})

Implementation

RadialButton(
    {this.buttonColor = Colors.orange,
    required this.icon,
    required this.onPress});