Output constructor
Output({
- Status? status,
- SigningInput? ethereum,
- SigningInput? cosmos,
- 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;
}