AccessGate<T> constructor

const AccessGate<T>({
  1. required T input,
  2. required AccessCheck<T> check,
  3. required Widget child,
  4. Widget? fallback,
  5. Widget? loading,
  6. Key? key,
})

Implementation

const AccessGate({
  required this.input,
  required this.check,
  required this.child,
  this.fallback,
  this.loading,
  super.key,
});