BSCircularButton constructor

const BSCircularButton({
  1. Key? key,
  2. required String heroTag,
  3. required Function? onPress,
  4. required IconData iconData,
  5. bool isBackButton = false,
})

Implementation

const BSCircularButton(
    {super.key,
    required this.heroTag,
    required this.onPress,
    required this.iconData,
    this.isBackButton = false});