setTitle method

CallSettingsBuilder setTitle(
  1. String title
)

Sets the title for the call.

Implementation

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