joinedAt property

DateTime get joinedAt

when the participant joined the room

Implementation

DateTime get joinedAt {
  final pi = _participantInfo;
  if (pi != null) {
    return DateTime.fromMillisecondsSinceEpoch(pi.joinedAt.toInt() * 1000, isUtc: true);
  }
  return DateTime.timestamp();
}