AuthFilterGate constructor

AuthFilterGate({
  1. Key? key,
  2. required Component child,
  3. bool authRequired = true,
})

Implementation

AuthFilterGate({Key? key, required this.child, this.authRequired = true})
    : super(key: key, child: child);