setPageTitle static method

Future<Null> setPageTitle(
  1. String pageTitle
)

Sets the current page title to be shown in the visitor footpath on the SalesIQ console.

Implementation

static Future<Null> setPageTitle(String pageTitle) async {
  await _channel.invokeMethod('setPageTitle', pageTitle);
}