decode method Null safety
- XdrDataInputStream stream
Implementation
static XdrSorobanAuthorizationEntry decode(XdrDataInputStream stream) {
XdrSorobanCredentials credentials = XdrSorobanCredentials.decode(stream);
XdrSorobanAuthorizedInvocation rootInvocation =
XdrSorobanAuthorizedInvocation.decode(stream);
return XdrSorobanAuthorizationEntry(credentials, rootInvocation);
}