LbSetupAccessPointConfig constructor

const LbSetupAccessPointConfig({
  1. Key? key,
  2. required void onSuccess(),
  3. required void onCancel(),
  4. required void onSkip(),
  5. required bool isVisible,
})

Implementation

const LbSetupAccessPointConfig({
  Key? key,
  required this.onSuccess,
  required this.onCancel,
  required this.onSkip,
  required this.isVisible,
}) : super(key: key);