getStatus method

void getStatus(
  1. String did
)

Implementation

void getStatus(String did) {
  String str =
      json.encode(_encryptionMap({'event': 'getStatus', 'did': did}));
  List<int> bytes = utf8.encode(str);
  var buffer = _socketBuffer(bytes);
  _socketServer.send(buffer);
}