paramType property

List<ParamType> paramType

This is an array of each ParamType for the input parameters to the Constructor, Event of Function.

Implementation

List<ParamType> get paramType =>
    impl.inputs.cast<_ParamTypeImpl>().map((e) => ParamType._(e)).toList();