AuthorizedInvocation constructor Null safety
Implementation
AuthorizedInvocation(this.contractId, this.functionName,
{List<XdrSCVal>? args, List<AuthorizedInvocation>? subInvocations}) {
if (args != null) {
this.args = args;
}
if (subInvocations != null) {
this.subInvocations = subInvocations;
}
}