This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
class API {
///HOST
static const String host = 'http://test.akuhotel.com:8804';
///接口基础地址
static const String baseURL = '$host/IntelligentCommunity/butlerApp';
///静态资源路径
static String get resource => '$host/static';
static String image(String path) => '$resource$path';
static const int networkTimeOut = 10000;
static _Auth auth = _Auth();
}
class _Auth {
///登录/退出:发送短信验证码
String get sendSMS => '/login/sendMMSLogin';
///登录/退出:管家app用户短信登录
String get login => '/login/loginSMSUser';