/* * This file is part of Stack Wallet. * * Copyright (c) 2023 Cypher Stack * All Rights Reserved. * The code is distributed under GPLv3 license, see LICENSE file for details. * Generated by Cypher Stack on 2023-05-26 * */ import 'package:decimal/decimal.dart'; class SendViewAutoFillData { final String address; final String contactLabel; final Decimal? amount; final String note; SendViewAutoFillData({ required this.address, required this.contactLabel, this.amount, this.note = "", }); Map toJson() { return { "address": address, "contactLabel": contactLabel, "amount": amount, "note": note, }; } @override String toString() { return toJson().toString(); } }