hdCreate method
Implementation
ICPAccount hdCreate({
String passphase = "",
int? index = 0,
List<int>? icPath = IC_BASE_PATH,
CurveType curveType = CurveType.ed25519,
}) {
return ICPAccount.fromPhrase(
_phrase!,
passphase: passphase,
index: _index!,
icPath: icPath,
curveType: curveType,
);
}