toUniqueList method

List<String> toUniqueList({
  1. bool growable = true,
})

Implementation

List<String> toUniqueList({bool growable = true}) => (this as Iterable<String>).toUniqueList(growable: growable) as List<String>;