setUserAttributeLocation method

void setUserAttributeLocation(
  1. String userAttributeName,
  2. MoEGeoLocation location,
  3. String appId
)

Implementation

void setUserAttributeLocation(
    String userAttributeName, MoEGeoLocation location, String appId) {
  _channel.invokeMethod(
      methodSetUserAttribute,
      getUserAttributePayload(
          userAttributeName, userAttrTypeLocation, location.toMap(), appId));
}