AccessGate<T> constructor
const
AccessGate<T> ({
- required T input,
- required AccessCheck<
T> check, - required Widget child,
- Widget? fallback,
- Widget? loading,
- Key? key,
Implementation
const AccessGate({
required this.input,
required this.check,
required this.child,
this.fallback,
this.loading,
super.key,
});