FunctionParameter constructor

FunctionParameter({
  1. int parameterIndex = 0,
  2. String typeName = '',
  3. String valueJson = '',
  4. List<int> valueData = const [],
  5. bool isEnumerable = false,
  6. String enumerableItemTypeName = '',
  7. String enumerationId = '',
  8. List<int> valueTeleport = const [],
})

Implementation

FunctionParameter({
    this.parameterIndex = 0,
    this.typeName = '',
    this.valueJson = '',
    this.valueData = const [],
    this.isEnumerable = false,
    this.enumerableItemTypeName = '',
    this.enumerationId = '',
    this.valueTeleport = const [],
});