Func constructor

Func(
  1. String name,
  2. Type returnType,
  3. bool isArray,
  4. List<Arg> argsType, [
  5. String? annotation = null,
])

Implementation

Func(this.name, this.returnType, this.isArray, this.argsType,
    [this.annotation = null]);