| 1 | class ExchangeTradeItem { |
| 2 | ExchangeTradeItem({ |
| 3 | required this.title, |
| 4 | required this.data, |
| 5 | required this.isCopied, |
| 6 | required this.isReceiveDetail, |
| 7 | required this.isExternalSendDetail, |
| 8 | }); |
| 9 | |
| 10 | String title; |
| 11 | String data; |
| 12 | bool isCopied; |
| 13 | bool isReceiveDetail; |
| 14 | bool isExternalSendDetail; |
| 15 | } |