cake_wallet/lib/core/wallet_credentials.dart
2020-06-20 10:10:00 +03:00

6 lines
No EOL
126 B
Dart

abstract class WalletCredentials {
WalletCredentials({this.name, this.password});
final String name;
String password;
}