SignDoc constructor
Implementation
factory SignDoc({
$core.List<$core.int>? bodyBytes,
$core.List<$core.int>? authInfoBytes,
$core.String? chainId,
$fixnum.Int64? accountNumber,
}) {
final result = create();
if (bodyBytes != null) {
result.bodyBytes = bodyBytes;
}
if (authInfoBytes != null) {
result.authInfoBytes = authInfoBytes;
}
if (chainId != null) {
result.chainId = chainId;
}
if (accountNumber != null) {
result.accountNumber = accountNumber;
}
return result;
}