Creates a RxSet from a set. {@tool snippet}
set
final set = RxSet({'jacob', 'sara'});
{@end-tool}
static RxSet<T> of<T>(Set<T> set) => RxSet<T>(set);