You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import'dart:collection';
voidmain() {
LinkedHashSet x =newSet<int>(); // A value of type 'Set<int>' can't be assigned to a variable of type 'LinkedHashSet'
}
It seems unambiguous that that should be a LinkedHashSet<int>.