Revamp Done - Support for Individual and Jwellery module added

This commit is contained in:
2026-08-29 12:01:00 +05:30
parent eacca6aaea
commit cdc58c9bce
37 changed files with 4334 additions and 2935 deletions

View File

@@ -78,6 +78,12 @@ class AuthController extends AsyncNotifier<void> {
return false;
}
}
Future<void> logout() async {
try {
await DioClient().clearToken();
} catch (_) {}
}
}
final authControllerProvider = AsyncNotifierProvider<AuthController, void>(() {