smartAdd method

void smartAdd(
  1. T value
)

Adds the given value to the list, with behavior determined by ChangeType.

  • value: The value to add to the list.

Implementation

void smartAdd(T value) => hardAdd(value);