ComponentParameter constructor

ComponentParameter(
  1. String _name,
  2. ComponentsParametersTypes _type,
  3. dynamic _option
)

Implementation

ComponentParameter(this._name, this._type, this._option) {
  if (_option is List) {
    value = _option.first;
  }
}