menu
androssy_utils package
documentation
utils.dart
Converter
toSet<T> static method
toSet<T> static method
dark_mode
light_mode
toSet<
T
>
static method
Set
<
T
>
?
toSet
<
T
>(
List
<
T
>
list
)
Implementation
static Set<T>? toSet<T>(List<T> list) => list.isNotEmpty ? Set.from(list) : null;
androssy_utils package
documentation
utils
Converter
toSet<T> static method
Converter class