insert method

  1. @Deprecated('Prefer `add`. ' 'This method has been changed to follow dart conventions. The implementation also now ensures full re-clustering, see the CHANGELOG for more information. ' 'This method is deprecated since v3.')
void insert(
  1. T point
)

Implementation

@Deprecated(
  'Prefer `add`. '
  'This method has been changed to follow dart conventions. The implementation also now ensures full re-clustering, see the CHANGELOG for more information. '
  'This method is deprecated since v3.',
)
void insert(T point) => add(point);