mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
13 lines
244 B
Dart
13 lines
244 B
Dart
|
import 'package:flutter/cupertino.dart';
|
||
|
|
||
|
class ExchangeTradeItem {
|
||
|
ExchangeTradeItem({
|
||
|
@required this.title,
|
||
|
@required this.data,
|
||
|
@required this.isCopied,
|
||
|
});
|
||
|
|
||
|
final String title;
|
||
|
final String data;
|
||
|
final bool isCopied;
|
||
|
}
|