onNotifyUserLeft method

void onNotifyUserLeft(
  1. Map args
)

Implementation

void onNotifyUserLeft(Map args) {
  String userID = args['userID'];
  String userName = args['userName'];
  notifyUserLeft?.call(userID, userName);
}