setOperatorEmail static method

Future<Null> setOperatorEmail(
  1. String email
)

Sets the operator to whom all chat requests need to be routed using the provided email.

Implementation

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