OCFunctionCall constructor

OCFunctionCall({
  1. String instanceName = '',
  2. String functionName = '',
  3. List<OCFunctionCallRealParam> params = const [],
  4. bool ignoreError = false,
  5. int depth = 0,
})

Implementation

OCFunctionCall(
    {this.instanceName = '',
    this.functionName = '',
    this.params = const [],
    this.ignoreError = false,
    int depth = 0})
    : super(depth);