requestState method

void requestState(
  1. String documentId
)

Request the state of the awareness from the server

Implementation

void requestState(String documentId) {
  client.sendMessage(
    AwarenessQueryMessage(
      documentId: documentId,
    ),
  );
}