InvokeContractOp constructor Null safety

InvokeContractOp(
  1. String _contractID,
  2. String _functionName,
  3. {List<XdrSCVal>? arguments,
  4. XdrLedgerFootprint? footprint}
)

Implementation

InvokeContractOp(this._contractID, this._functionName,
    {List<XdrSCVal>? arguments, XdrLedgerFootprint? footprint})
    : super(XdrHostFunctionType.HOST_FUNCTION_TYPE_INVOKE_CONTRACT,
          footprint: footprint) {
  this._arguments = arguments;
}