getString static method

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

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

Implementation

static Future<ApptimizeValueVariable<String>?> getString(String name) async {
  return _getDynamicVariable<String>(name, _DVTypeString);
}