ExpressFunc constructor

ExpressFunc(
  1. String name, [
  2. List<Object> args = const []
])

Implementation

ExpressFunc(super.name, [List<Object> args = const []]) {
  this.buffer.buffer.write("(");
  if (args.isNotEmpty) {
    this << args;
  }
  this.buffer.buffer.write(")");
}