Call constructor

Call({
  1. Function? func,
  2. String? ret,
  3. List<Argument>? args,
})

Implementation

Call({this.func, String? ret, List<Argument>? args})
    : super(ret: ret, args: args);