// class WebSession { // // POST (HR / Active) // static String? postClientId; // static String? postBranchId; // static String? postHrId; // static List? postModules; // // // PRE (Enrollment) // static String? preClientId; // static String? preBranchId; // static String? preHrId; // static List? preModules; // // static bool get hasPost => postClientId != null; // static bool get hasPre => preClientId != null; // // static void clear() { // postClientId = null; // postBranchId = null; // postHrId = null; // postModules = null; // // preClientId = null; // preBranchId = null; // preHrId = null; // preModules = null; // } // }