Output constructor

Output({
  1. Status? status,
  2. SigningInput? ethereum,
  3. SigningInput? cosmos,
  4. SigningInput? aptos,
})

Implementation

factory Output({
  Status? status,
  $7.SigningInput? ethereum,
  $8.SigningInput? cosmos,
  $9.SigningInput? aptos,
}) {
  final $result = create();
  if (status != null) {
    $result.status = status;
  }
  if (ethereum != null) {
    $result.ethereum = ethereum;
  }
  if (cosmos != null) {
    $result.cosmos = cosmos;
  }
  if (aptos != null) {
    $result.aptos = aptos;
  }
  return $result;
}