CustomSet<T>.empty constructor
CustomSet<T>.empty ()
Creates an empty set.
Example:
final emptySet = CustomSet<int>.empty();
Implementation
CustomSet.empty() : _elements = <T>{};
Creates an empty set.
Example:
final emptySet = CustomSet<int>.empty();
CustomSet.empty() : _elements = <T>{};