setDepartments static method

Future<Null> setDepartments(
  1. List<String> departmentList
)

Sets the list of departments to which chat requests may be routed.

Implementation

static Future<Null> setDepartments(List<String> departmentList) async {
  await _channel.invokeMethod('setDepartments', departmentList);
}