mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 18:07:44 +00:00
16 lines
336 B
Dart
16 lines
336 B
Dart
import 'package:cake_wallet/entities/contact_base.dart';
|
|
import 'package:cw_core/crypto_currency.dart';
|
|
|
|
class WalletContact implements ContactBase {
|
|
WalletContact(this.address, this.name, this.type);
|
|
//: super(name, address, type);
|
|
|
|
@override
|
|
String address;
|
|
|
|
@override
|
|
String name;
|
|
|
|
@override
|
|
CryptoCurrency type;
|
|
}
|