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