OpsInfoScreen constructor

const OpsInfoScreen({
  1. Key? key,
  2. Widget customIconChild = const Icon(Icons.info, size: 32.0, color: BinoxusPayColors.blackColor),
  3. required String message,
  4. required VoidCallback onClosing,
  5. required VoidCallback goBack,
  6. bool canShowGoBackBtn = false,
  7. String title = "Info. !",
  8. required bool hiddeAllBtn,
  9. bool noTopPadding = false,
  10. Color customColor = BinoxusPayColors.blackColor,
})

Implementation

const OpsInfoScreen(
    {super.key,
    this.customIconChild = const Icon(
      Icons.info,
      size: 32.0,
      color: BinoxusPayColors.blackColor,
    ),
    required this.message,
    required this.onClosing,
    required this.goBack,
    this.canShowGoBackBtn = false,
    this.title = "Info. !",
    required this.hiddeAllBtn,
    this.noTopPadding = false,
    this.customColor = BinoxusPayColors.blackColor});