MeetNotifier constructor

MeetNotifier({
  1. void onLoginRslt(
    1. CRMEETINGSDK_ERR error
    )?,
  2. void notifyLineOff(
    1. CRMEETINGSDK_ERR reason
    )?,
  3. void onMeetingStart()?,
  4. void onMeetinging()?,
  5. void onMeetingExited(
    1. CRMEETINGSDK_ERR error
    )?,
  6. void notifyUserJoined(
    1. String userID,
    2. String userName
    )?,
  7. void notifyUserLeft(
    1. String userID,
    2. String userName
    )?,
  8. void notifyCallIn(
    1. String callID,
    2. String caller,
    3. String meetInfo
    )?,
  9. void notifyCallInCanceled(
    1. String callID
    )?,
})

Implementation

MeetNotifier({
  this.onLoginRslt,
  this.notifyLineOff,
  this.onMeetingStart,
  this.onMeetinging,
  this.onMeetingExited,
  this.notifyUserJoined,
  this.notifyUserLeft,
  this.notifyCallIn,
  this.notifyCallInCanceled,
});