PreJoinPageParameters constructor

PreJoinPageParameters(
  1. {String? imgSrc,
  2. ShowAlert? showAlert,
  3. required dynamic updateIsLoadingModalVisible(
    1. bool
    ),
  4. required ConnectSocketType connectSocket,
  5. ConnectLocalSocketType? connectLocalSocket,
  6. required dynamic updateSocket(
    1. Socket?
    ),
  7. dynamic updateLocalSocket(
    1. Socket?
    )?,
  8. required dynamic updateValidated(
    1. bool
    ),
  9. required dynamic updateApiUserName(
    1. String
    ),
  10. required dynamic updateApiToken(
    1. String
    ),
  11. required dynamic updateLink(
    1. String
    ),
  12. required dynamic updateRoomName(
    1. String
    ),
  13. required dynamic updateMember(
    1. String
    )}
)

Implementation

PreJoinPageParameters({
  this.imgSrc,
  this.showAlert,
  required this.updateIsLoadingModalVisible,
  required this.connectSocket,
  this.connectLocalSocket,
  required this.updateSocket,
  this.updateLocalSocket,
  required this.updateValidated,
  required this.updateApiUserName,
  required this.updateApiToken,
  required this.updateLink,
  required this.updateRoomName,
  required this.updateMember,
});