isSend method

bool isSend()

Implementation

bool isSend() {
  String? currentUid = SpUtil.getString(BytedeskConstants.VISITOR_UID);
  if (currentUid == user?.uid) {
    return true;
  }
  return false;
}