BusinessConnection constructor

const BusinessConnection({
  1. required String id,
  2. required User user,
  3. required int userChatId,
  4. required int date,
  5. required bool canReply,
  6. required bool isEnabled,
})

Constructs a new BusinessConnection instance with the provided parameters.

Implementation

const BusinessConnection({
  required this.id,
  required this.user,
  required this.userChatId,
  required this.date,
  required this.canReply,
  required this.isEnabled,
});