getInteger static method

Future<ApptimizeValueVariable<int>?> getInteger(
  1. String name
)

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

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

Implementation

static Future<ApptimizeValueVariable<int>?> getInteger(String name) async {
  return _getDynamicVariable<int>(name, _DVTypeInt);
}