setUserAttributeIsoDate method

void setUserAttributeIsoDate(
  1. String userAttributeName,
  2. String isoDateString
)

Tracks the given time as user-attribute.
Date should be passed in the following format - yyyy-MM-dd'T'HH:mm:ss.fff'Z' userAttributeName - Name of User Attribute isoDateString - ISO Formatted Date String

Implementation

void setUserAttributeIsoDate(String userAttributeName, String isoDateString) {
  _platform.setUserAttributeIsoDate(userAttributeName, isoDateString, appId);
}