CustomUpgradeView constructor

const CustomUpgradeView({
  1. Key? key,
  2. required Widget builder(
    1. BuildContext context,
    2. UpgradeStateChangeNotifier state
    ),
})

Implementation

const CustomUpgradeView({
  super.key,
  required this.builder,
});