dev
dart 13 lines 257 Bytes
Raw
1 import 'package:cw_core/wallet_type.dart';
2
3 class NewWalletArguments {
4 final WalletType type;
5 final String? mnemonic;
6 final bool isChildWallet;
7
8 NewWalletArguments({
9 required this.type,
10 this.mnemonic,
11 this.isChildWallet = false,
12 });
13 }