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