var chart_values: MutableSet<MutableMap.MutableEntry<String, Any>>? = mutableSetOf()
Печать chart_values:
[ground={},
ground_level={},
date_of_birth=1988-07-18T00:00Z]
Я пытаюсь удалить его с помощью приведенного ниже кода
Activity.player.chart_values.remove('date_of_birth')
вышеприведенная строка показывает ошибку даже без запуска
Type inference failed. The value of the type parameter
T should be mentioned in input types (argument types,
receiver type or expected type). Try to specify it explicitly.