utils_remove_by_values_void method
return original data json
Implementation
void utils_remove_by_values_void(List values) {
for (final value_remove in values) {
rawData.removeWhere((key, value) => value == value_remove);
}
}
return original data json
void utils_remove_by_values_void(List values) {
for (final value_remove in values) {
rawData.removeWhere((key, value) => value == value_remove);
}
}