nullableMappedToIntList static method Null safety
- String? value
Implementation
static List<int>? nullableMappedToIntList(String? value) =>
value?.toString().split(',').map((item) => int.parse(item)).toList();
static List<int>? nullableMappedToIntList(String? value) =>
value?.toString().split(',').map((item) => int.parse(item)).toList();