UserController constructor

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

Implementation

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