pingUser method

Future<bool> pingUser(
  1. int userId
)

Implementation

Future<bool> pingUser(int userId) async {
  Map<String, Object> data = Map();

  data["userId"] = userId;

  return await _chatModule.invokeMethod(PING_USER_METHOD, data);
}