mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-27 14:09:50 +00:00
36 lines
815 B
Dart
36 lines
815 B
Dart
import 'package:hive/hive.dart';
|
|
|
|
part 'transaction_description.g.dart';
|
|
|
|
@HiveType(typeId: TransactionDescription.typeId)
|
|
class TransactionDescription extends HiveObject {
|
|
TransactionDescription(
|
|
{required this.id,
|
|
this.recipientAddress,
|
|
this.transactionNote,
|
|
this.historicalFiatRaw,
|
|
this.historicalFiatRate});
|
|
|
|
static const typeId = 2;
|
|
static const boxName = 'TransactionDescriptions';
|
|
static const boxKey = 'transactionDescriptionsBoxKey';
|
|
|
|
@HiveField(0, defaultValue: '')
|
|
String id;
|
|
|
|
@HiveField(1)
|
|
String? recipientAddress;
|
|
|
|
@HiveField(2)
|
|
String? transactionNote;
|
|
|
|
@HiveField(3)
|
|
String? historicalFiatRaw;
|
|
|
|
@HiveField(4)
|
|
double? historicalFiatRate;
|
|
|
|
String get note => transactionNote ?? '';
|
|
|
|
String get historicalFiat => historicalFiatRaw ?? '';
|
|
}
|