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