WelcomePageOptions constructor

WelcomePageOptions(
  1. {String imgSrc = 'https://mediasfu.com/images/logo192.png',
  2. required ShowAlert? showAlert,
  3. required dynamic updateIsLoadingModalVisible(
    1. bool
    ),
  4. required ConnectSocketType connectSocket,
  5. required dynamic updateSocket(
    1. Socket?
    ),
  6. required dynamic updateValidated(
    1. bool
    ),
  7. required dynamic updateApiUserName(
    1. String
    ),
  8. required dynamic updateApiToken(
    1. String
    ),
  9. required dynamic updateLink(
    1. String
    ),
  10. required dynamic updateRoomName(
    1. String
    ),
  11. required dynamic updateMember(
    1. String
    )}
)

Implementation

WelcomePageOptions({
  this.imgSrc = 'https://mediasfu.com/images/logo192.png',
  required this.showAlert,
  required this.updateIsLoadingModalVisible,
  required this.connectSocket,
  required this.updateSocket,
  required this.updateValidated,
  required this.updateApiUserName,
  required this.updateApiToken,
  required this.updateLink,
  required this.updateRoomName,
  required this.updateMember,
});