SMSupportData constructor

const SMSupportData({
  1. required String appName,
  2. required SMSupportLocale locale,
  3. required String tenantId,
  4. required String apiKey,
  5. required String secretKey,
  6. required String baseUrl,
  7. required String socketBaseUrl,
  8. CustomerData? customer,
})
  • Data constructor for SMSupportData with required parameters only

Implementation

const SMSupportData({
  required this.appName,
  required this.locale,
  required this.tenantId,
  required this.apiKey,
  required this.secretKey,
  required this.baseUrl,
  required this.socketBaseUrl,
  this.customer,
});