cake_wallet/lib/entities/template.dart

41 lines
689 B
Dart
Raw Normal View History

import 'package:hive/hive.dart';
part 'template.g.dart';
2021-01-15 17:41:30 +00:00
@HiveType(typeId: Template.typeId)
class Template extends HiveObject {
2022-10-12 17:09:57 +00:00
Template({
required this.name,
required this.isCurrencySelected,
required this.address,
required this.cryptoCurrency,
required this.amount,
required this.fiatCurrency,
required this.amountFiat});
2021-01-15 17:41:30 +00:00
static const typeId = 6;
static const boxName = 'Template';
@HiveField(0)
String name;
@HiveField(1)
String address;
@HiveField(2)
String cryptoCurrency;
@HiveField(3)
String amount;
@HiveField(4)
String fiatCurrency;
@HiveField(5)
bool isCurrencySelected;
@HiveField(6)
String amountFiat;
}