Output constructor

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

Implementation

factory Output({
  Status? status,
  $0.SigningInput? ethereum,
  $1.SigningInput? cosmos,
  $2.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;
}