TicketTab constructor

const TicketTab({
  1. Key? key,
  2. required String workspaceId,
  3. String? customerId,
  4. String? userToken,
  5. LanguageOptions? language = LanguageOptions.en,
  6. required String themeColor,
})

Implementation

const TicketTab({
  Key? key,
  required this.workspaceId,
  this.customerId,
  this.userToken,
  this.language = LanguageOptions.en,
  required this.themeColor,
}) : super(key: key);