format code

This commit is contained in:
jyuesong
2022-01-18 09:29:45 +08:00
parent 917425c5de
commit 074580952f
40 changed files with 414 additions and 568 deletions

View File

@@ -11,11 +11,11 @@ class LoginBean {
LoginBean(
{this.token,
this.lastip,
this.lastaddr,
this.lastlogon,
this.retries,
this.platform});
this.lastip,
this.lastaddr,
this.lastlogon,
this.retries,
this.platform});
LoginBean.fromJson(Map<String, dynamic> json) {
token = json['token'];
@@ -36,6 +36,7 @@ class LoginBean {
data['platform'] = this.platform;
return data;
}
static LoginBean jsonConversion(Map<String, dynamic> json) {
return LoginBean.fromJson(json);
}