mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-28 06:29:39 +00:00
16 lines
312 B
Dart
16 lines
312 B
Dart
|
import 'package:cw_core/wallet_type.dart';
|
||
|
|
||
|
class NewWalletArguments {
|
||
|
final WalletType type;
|
||
|
final String? mnemonic;
|
||
|
final String? parentAddress;
|
||
|
final bool isChildWallet;
|
||
|
|
||
|
NewWalletArguments({
|
||
|
required this.type,
|
||
|
this.parentAddress,
|
||
|
this.mnemonic,
|
||
|
this.isChildWallet = false,
|
||
|
});
|
||
|
}
|