backup. before shop update

This commit is contained in:
2021-08-31 13:28:33 -04:00
parent c378a6203c
commit 808ffa3211
292 changed files with 51551 additions and 695 deletions

20
lib/models/image_url.dart Normal file
View File

@@ -0,0 +1,20 @@
import 'dart:convert';
class ImageUrl {
int id;
String imageUrl;
ImageUrl.fromJson(Map<String, dynamic> json)
: id = json['id'],
imageUrl = json['image_url'];
Map<String, dynamic> toJson() => {
'id': id,
'image_url': imageUrl
};
@override
String toString() {
return json.encode(this);
}
}