getBoolDictionary static method

Future<ApptimizeMapVariable<bool>?> getBoolDictionary(
  1. String name
)

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

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

Implementation

static Future<ApptimizeMapVariable<bool>?> getBoolDictionary(
    String name) async {
  return _getDynamicMapVariable<bool>(name, _DVTypeDictionary + _DVTypeBool);
}