stack_wallet/lib/models/send_view_auto_fill_data.dart

40 lines
768 B
Dart
Raw Normal View History

2023-05-26 21:21:16 +00:00
/*
* 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
*
*/
2022-08-26 08:11:35 +00:00
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<String, dynamic> toJson() {
return {
"address": address,
"contactLabel": contactLabel,
"amount": amount,
"note": note,
};
}
@override
String toString() {
return toJson().toString();
}
}