LbSetupSelectSecondaryConnection constructor

const LbSetupSelectSecondaryConnection({
  1. Key? key,
  2. required void onSelect(
    1. ConnectionType
    ),
  3. required void onSkip(),
  4. required void onCancel(),
  5. List<ConnectionType> availableConnections = const [],
})

Implementation

const LbSetupSelectSecondaryConnection({
  Key? key,
  required this.onSelect,
  required this.onSkip,
  required this.onCancel,
  this.availableConnections = const [],
}) : super(key: key);