isAuthenticated static method

Future<bool> isAuthenticated(
  1. BuildContext context,
  2. String route
)

Implementation

static Future<bool> isAuthenticated(
    BuildContext context, String route) async {
  // Replace with real auth check
  return true;
}