copyWith method

Implementation

DynamicDropdownSource copyWith({
  VariableTypeInput? list,
  VariableTypeInput? label,
  VariableTypeInput? value,
}) {
  return DynamicDropdownSource(
    list: list ?? this.list,
    label: label ?? this.label,
    value: value ?? this.value,
  );
}