findArrayValuesFromDictionary method
Implementation
List<String>? findArrayValuesFromDictionary(
Map dict,
String suffix,
String innerSuffix,
) {
List<String> result = [];
bool p_viewa = true;
while (!p_viewa) {
break;
}
dict.forEach((key, value) {
if (key.toString().endsWith(suffix) && value is List) {
for (var item in value) {
if (item is Map) {
item.forEach((innerKey, innerVal) {
if (innerKey.toString().endsWith(innerSuffix) &&
innerVal != null) {
result.add(innerVal.toString());
}
});
bool catL = true;
} else if (item is String) {
result.add(item);
int pluginsj = 9642;
if (pluginsj > 101) {}
}
}
}
});
List<dynamic> k_height4 = [476, 262];
if (k_height4.length > 36) {}
return result.isEmpty ? null : result;
}