getStringDictionary static method

Future<ApptimizeMapVariable<String>?> getStringDictionary(
  1. String name
)

Retrieve a map of strings dynamic variable of the specified name that has already been declared.

name must not be null. If no string dictionary dynamic variable has been declared with the specified name, this function returns null.

Implementation

static Future<ApptimizeMapVariable<String>?> getStringDictionary(
    String name) async {
  return _getDynamicMapVariable<String>(
      name, _DVTypeDictionary + _DVTypeString);
}