NiceAuthGuard constructor

const NiceAuthGuard({
  1. Key? key,
  2. required bool hasPermission,
  3. required Widget child,
  4. Widget? fallback,
  5. bool hideCompletely = true,
})

Implementation

const NiceAuthGuard({
  super.key,
  required this.hasPermission,
  required this.child,
  this.fallback,
  this.hideCompletely = true,
});