cake_wallet/lib/entities/wallet_description.dart

8 lines
No EOL
165 B
Dart

import 'package:cw_core/wallet_type.dart';
class WalletDescription {
WalletDescription({this.name, this.type});
final String name;
final WalletType type;
}