getDouble static method

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

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

Implementation

static Future<ApptimizeValueVariable<double>?> getDouble(String name) async {
  return _getDynamicVariable<double>(name, _DVTypeDouble);
}