setDisplayName method

SessionSettingsBuilder setDisplayName(
  1. String name
)

Sets the display name for the local user.

Implementation

SessionSettingsBuilder setDisplayName(String name) {
  _displayName = name;
  return this;
}