GuestMiddleware constructor

const GuestMiddleware({
  1. required bool isAuthenticated(),
  2. String homePath = '/',
})

Implementation

const GuestMiddleware({
  required this.isAuthenticated,
  this.homePath = '/',
});