OpsInfoScreen constructor
const
OpsInfoScreen({
- Key? key,
- Widget customIconChild = const Icon(Icons.info, size: 32.0, color: BinoxusPayColors.blackColor),
- required String message,
- required VoidCallback onClosing,
- required VoidCallback goBack,
- bool canShowGoBackBtn = false,
- String title = "Info. !",
- required bool hiddeAllBtn,
- bool noTopPadding = false,
- 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});