getIn method
- @Deprecated("this emit is absorbed by method locationReport")
- required String macAddress,
Implementation
@Deprecated("this emit is absorbed by method locationReport")
void getIn({required String macAddress}) {
  startSocket(prefs.read("token"));
  Map<String, dynamic> json = {
    "beacon_id": macAddress,
  };
  socket.emit("get_in", json);
}