CustomSet<T>.empty constructor

CustomSet<T>.empty()

Creates an empty set.

Example:

final emptySet = CustomSet<int>.empty();

Implementation

CustomSet.empty() : _elements = <T>{};