getBool static method

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

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

Implementation

static Future<ApptimizeValueVariable<bool>?> getBool(String name) async {
  return _getDynamicVariable<bool>(name, _DVTypeBool);
}