ArrayFunctionParamType<T> constructor

const ArrayFunctionParamType<T>(
  1. String name,
  2. FunctionParamType<T> itemType
)

Implementation

const ArrayFunctionParamType(String name, this.itemType)
    : super(name, List<T>);