FirebaseChatService constructor

FirebaseChatService({
  1. FirebaseChatOptions? options,
  2. FirebaseApp? app,
  3. ChatDetailService? firebaseChatDetailService,
  4. ChatOverviewService? firebaseChatOverviewService,
  5. ChatUserService? firebaseChatUserService,
})

Implementation

FirebaseChatService({
  this.options,
  this.app,
  this.firebaseChatDetailService,
  this.firebaseChatOverviewService,
  this.firebaseChatUserService,
}) {
  firebaseChatDetailService ??= FirebaseChatDetailService(
    userService: chatUserService,
    options: options,
    app: app,
  );

  firebaseChatOverviewService ??= FirebaseChatOverviewService(
    userService: chatUserService,
    options: options,
    app: app,
  );

  firebaseChatUserService ??= FirebaseChatUserService(
    options: options,
    app: app,
  );
}