DyteParticipantCountView
Overview
Subclass of UILabel which shows count of total joined participants in a meeting.
Topics:
Creating a DyteParticipantCountView.
 init(meeting: DyteMobileClient, appearance: DyteTextAppearance = AppTheme.shared.participantCountAppearance) {
Parameters:
Required
meeting: Current ongoing meeting object.
Optional:
appearance: Any type which conforms to protocol "DyteTextAppearance"
For example you can use this as below.
public lazy var lblSubtitle: DyteParticipantCountView = {
  let label = DyteParticipantCountView(meeting: self.meeting)
  label.textAlignment = .left
  return label
}()