Wallet constructor
Implementation
Wallet(this.name, {this.version = '1.0', this.createTime, this.scrypt}) {
createTime = createTime ?? DateTime.now().toIso8601String();
scrypt = scrypt ?? ScryptParams.defaultParams;
}
Wallet(this.name, {this.version = '1.0', this.createTime, this.scrypt}) {
createTime = createTime ?? DateTime.now().toIso8601String();
scrypt = scrypt ?? ScryptParams.defaultParams;
}