AuthRedirect constructor

const AuthRedirect({
  1. Key? key,
  2. required String authorized,
  3. required String unauthorized,
})

Implementation

const AuthRedirect(
    {Key? key, required this.authorized, required this.unauthorized})
    : super(key: key);