ChatWidget constructor

const ChatWidget({
  1. Key? key,
  2. required int userId,
  3. required String companyUuid,
  4. bool isUser = true,
  5. required String url,
})

Implementation

const ChatWidget(
    {super.key,
    required this.userId,
    required this.companyUuid,
    this.isUser = true,
    required this.url});