getIntegerArray static method

Future<ApptimizeListVariable<int>?> getIntegerArray(
  1. String name
)

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

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

Implementation

static Future<ApptimizeListVariable<int>?> getIntegerArray(
    String name) async {
  return _getDynamicListVariable<int>(name, _DVTypeArray + _DVTypeInt);
}