setTitle method

SessionSettingsBuilder setTitle(
  1. String title
)

Sets the title for the session.

Implementation

SessionSettingsBuilder setTitle(String title) {
  _title = title;
  return this;
}