parameterNames property

List<String>? parameterNames
getter/setter pair

If the type is a function type, the names of the function parameters of all kinds - required, optional positional, and optional named. The names of positional parameters are empty strings. Omitted if the type is not a function type.

Implementation

List<String>? parameterNames;