JwtGuard constructor

JwtGuard({
  1. required String jwtSecret,
  2. List<String> exceptRoutes = const [],
})

Implementation

JwtGuard({
  required this.jwtSecret,
  this.exceptRoutes = const [],
});