ReportButton constructor

const ReportButton({
  1. Key? key,
  2. required VoidCallback onTap,
  3. required String buttonName,
  4. required double height,
  5. required double width,
})

Implementation

const ReportButton(
    {Key? key,
    required this.onTap,
    required this.buttonName,
    required this.height,
    required this.width})
    : super(key: key);