NIMSignallingEvent constructor

NIMSignallingEvent({
  1. required NIMSignallingEventType eventType,
  2. required NIMSignallingChannelInfo? channelInfo,
  3. required String operatorAccountId,
  4. String? serverExtension,
  5. required int time,
  6. String? inviteeAccountId,
  7. String? inviterAccountId,
  8. String? requestId,
  9. NIMSignallingPushConfig? pushConfig,
  10. bool? unreadEnabled,
  11. NIMSignallingMember? member,
})

Implementation

NIMSignallingEvent({
  required this.eventType,
  required this.channelInfo,
  required this.operatorAccountId,
  this.serverExtension,
  required this.time,
  this.inviteeAccountId,
  this.inviterAccountId,
  this.requestId,
  this.pushConfig,
  this.unreadEnabled,
  this.member,
});