cake_wallet/lib/src/screens/exchange_trade/exchange_trade_item.dart

13 lines
244 B
Dart
Raw Normal View History

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;
}