getDoubleArray static method

Future<ApptimizeListVariable<double>?> getDoubleArray(
  1. String name
)

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

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

Implementation

static Future<ApptimizeListVariable<double>?> getDoubleArray(
    String name) async {
  return _getDynamicListVariable<double>(name, _DVTypeArray + _DVTypeDouble);
}