手戻り修正、APK出力

This commit is contained in:
2024-04-24 11:30:38 +09:00
parent 4d40a10f9a
commit 8945748d07
9 changed files with 213 additions and 52 deletions

View File

@ -59,8 +59,8 @@ class Destination {
this.buypoint_image,
this.forced_checkin = false,
this.recipt_times = 0,
this.tags,
this.use_qr_code = false});
this.tags}); //, ... use_qr_code をDBに追加したらオープン
// this.use_qr_code = false});
factory Destination.fromMap(Map<String, dynamic> json) {
bool selec = json['selected'] == 0 ? false : true;
@ -96,8 +96,8 @@ class Destination {
buypoint_image: json["buypoint_image"],
forced_checkin: forcedCheckin,
recipt_times: json["recipt_times"],
tags: json["tags"],
use_qr_code: useQrCode);
tags: json["tags"] ); //,
// use_qr_code: useQrCode);
}
Map<String, dynamic> toMap() {
@ -131,8 +131,8 @@ class Destination {
'buypoint_image': buypoint_image,
'forced_checkin': forcedCheckin,
'recipt_times': recipt_times,
'tags': tags,
'use_qr_code': use_qr_code
'tags': tags //,
//'use_qr_code': use_qr_code
};
}
}