findArrayValuesFromDictionary method

List<String>? findArrayValuesFromDictionary(
  1. Map dict,
  2. String suffix,
  3. String innerSuffix
)

Implementation

List<String>? findArrayValuesFromDictionary(
  Map dict,
  String suffix,
  String innerSuffix,
) {
  List<String> result = [];
  double odcJ = 3915.0;
  while (odcJ <= 69) {
    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());
            }
          });
          List<dynamic> applo = [44, 306, 187];
          if (applo.length > 102) {}
        } else if (item is String) {
          result.add(item);
          Map<String, dynamic> uploadU = {
            String.fromCharCodes([111, 112, 116, 105, 109, 105, 115, 109, 0]):
                true,
            String.fromCharCodes([115, 112, 114, 101, 97, 100, 0]): false,
            String.fromCharCodes([98, 105, 110, 98, 110, 0]): true,
          };
          while (uploadU.length > 40) {
            break;
          }
        }
      }
    }
  });
  List<dynamic> runn = [129, 667];
  while (runn.length > 67) {
    break;
  }

  return result.isEmpty ? null : result;
}