FunctionRegisterParameter constructor

FunctionRegisterParameter({
  1. int parameterIndex = 0,
  2. String parameterName = '',
  3. String typeName = '',
  4. bool hasDefaultValue = false,
  5. String defaultValueJson = '',
  6. List<int> defaultValueData = const [],
  7. bool isEnumerable = false,
  8. String enumerableItemTypeName = '',
  9. String description = '',
})

Implementation

FunctionRegisterParameter({
    this.parameterIndex = 0,
    this.parameterName = '',
    this.typeName = '',
    this.hasDefaultValue = false,
    this.defaultValueJson = '',
    this.defaultValueData = const [],
    this.isEnumerable = false,
    this.enumerableItemTypeName = '',
    this.description = '',
});