手戻り修正、APK出力
This commit is contained in:
@ -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
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user