SubscribePresenceOptions constructor

SubscribePresenceOptions({
  1. required String channel,
  2. int? membersLimit,
  3. void onSuccess(
    1. dynamic
    )?,
  4. void onFailed(
    1. GResult
    )?,
  5. void onPresence(
    1. PresenceEvent
    )?,
})

Implementation

SubscribePresenceOptions({
  required this.channel,
  this.membersLimit,
  super.onSuccess,
  super.onFailed,
  void Function(PresenceEvent)? onPresence
}):onPresence =  onPresence?? ((_) {});