SorobanAuthorizedContractFunction constructor Null safety

SorobanAuthorizedContractFunction(
  1. Address contractAddress,
  2. String functionName,
  3. {List<XdrSCVal>? args}
)

Implementation

SorobanAuthorizedContractFunction(this.contractAddress, this.functionName,
    {List<XdrSCVal>? args}) {
  if (args != null) {
    this.args = args;
  }
}