UserController constructor

UserController(
  1. UserId id,
  2. UserService _userService,
  3. ChatService _chatService,
  4. CallService _callService,
  5. PartnerService _partnerService,
)

Implementation

UserController(
  this.id,
  this._userService,
  this._chatService,
  this._callService,
  this._partnerService,
);