setUserVars static method

Future<void> setUserVars(
  1. Map<String, Object?> userVars
)

Set arbitrary key/value pairs that are associated with the current user.

Fullstory uses two keys, if set:

  • The value of displayName is displayed in the session list and on the user card in Fullstory playback.
  • The value of email can be used to email the user directly from within Fullstory, and also to find a user's sessions.

For more information, see https://developer.fullstory.com/mobile/flutter/identification/set-user-properties/

Implementation

static Future<void> setUserVars(Map<String, Object?> userVars) {
  return FullstoryFlutterPlatform.instance.setUserVars(userVars);
}