class UpiQrResponse{ bool? status; String? message; String? image; UpiQrResponse.fromJson(Map json){ status = (json["Code"] ?? "") != "0"; image = json["Data"] ?? ""; message = json["Message"] ?? "Something went wrong"; } UpiQrResponse.withError(String err){ status = false; message = err; image = ""; } }