hdCreate method

ICPAccount hdCreate({
  1. String passphase = "",
  2. int? index = 0,
  3. List<int>? icPath = IC_BASE_PATH,
  4. CurveType curveType = CurveType.ed25519,
})

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,
  );
}