SorobanAuthorizedInvocation constructor Null safety
- SorobanAuthorizedFunction function,
- {List<
SorobanAuthorizedInvocation> ? subInvocations}
Implementation
SorobanAuthorizedInvocation(this.function,
{List<SorobanAuthorizedInvocation>? subInvocations}) {
if (subInvocations != null) {
this.subInvocations = subInvocations;
}
}