CFeedBackManager constructor

const CFeedBackManager({
  1. Key? key,
  2. required Widget child,
  3. List<CBottomSheetController>? bottomSheetControllers,
  4. List<CDialogController>? dialogControllers,
  5. List<CSnackBarController>? snackBarControllers,
})

Implementation

const CFeedBackManager({
  Key? key,
  required this.child,
  this.bottomSheetControllers,
  this.dialogControllers,
  this.snackBarControllers,
}) : super(key: key);