SigningKey_ExtendedEd25519Sk constructor

SigningKey_ExtendedEd25519Sk({
  1. List<int>? leftKey,
  2. List<int>? rightKey,
  3. List<int>? chainCode,
})

Implementation

factory SigningKey_ExtendedEd25519Sk({
  $core.List<$core.int>? leftKey,
  $core.List<$core.int>? rightKey,
  $core.List<$core.int>? chainCode,
}) {
  final $result = create();
  if (leftKey != null) {
    $result.leftKey = leftKey;
  }
  if (rightKey != null) {
    $result.rightKey = rightKey;
  }
  if (chainCode != null) {
    $result.chainCode = chainCode;
  }
  return $result;
}