flutter/lib/utils/common.dart

17 lines
248 B
Dart
Raw Normal View History

2025-07-21 15:46:30 +08:00
/// 封装公共方法
library;
import './storage.dart';
class Common {
/// 判断是否登录
static isLogin() {
return Storage.hasData('hasLogged');
}
/// 退出登录
static logout() {
Storage.clear();
}
}