dev
dart 13 lines 237 Bytes
Raw
1 import 'package:cw_core/crypto_currency.dart';
2
3 abstract class ContactBase {
4 ContactBase(this.name, this.address, this.type, {this.displayName = ""});
5
6 String name;
7
8 String address;
9
10 String displayName;
11
12 CryptoCurrency type;
13 }