mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-06 04:17:42 +00:00
30 lines
534 B
Dart
30 lines
534 B
Dart
|
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();
|
||
|
}
|
||
|
}
|