ContractAuth constructor Null safety

ContractAuth(
  1. AuthorizedInvocation rootInvocation,
  2. {List<XdrSCVal>? signatureArgs,
  3. Address? address,
  4. int? nonce}
)

Implementation

ContractAuth(this.rootInvocation,
    {List<XdrSCVal>? signatureArgs, this.address, this.nonce}) {
  if (signatureArgs != null) {
    this.signatureArgs = signatureArgs;
  }
}