删除文件
This commit is contained in:
parent
fe7cb98cf9
commit
87bbce3d9f
@ -1,28 +0,0 @@
|
||||
class Data {
|
||||
Data({
|
||||
this.originalImageBase64,
|
||||
this.jigsawImageBase64,
|
||||
this.secretKey,
|
||||
this.token});
|
||||
|
||||
Data.fromJson(dynamic json) {
|
||||
originalImageBase64 = json['originalImageBase64'];
|
||||
jigsawImageBase64 = json['jigsawImageBase64'];
|
||||
secretKey = json['secretKey'];
|
||||
token = json['token'];
|
||||
}
|
||||
int? originalImageBase64;
|
||||
String? jigsawImageBase64;
|
||||
String? secretKey;
|
||||
String? token;
|
||||
|
||||
Map<String, dynamic> toJson() {
|
||||
final map = <String, dynamic>{};
|
||||
map['originalImageBase64'] = originalImageBase64;
|
||||
map['jigsawImageBase64'] = jigsawImageBase64;
|
||||
map['secretKey'] = secretKey;
|
||||
map['token'] = token;
|
||||
return map;
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user