AppEventResponse constructor

AppEventResponse({
  1. bool? asyncUrlEnrichEnabled,
  2. required bool autoTranslationEnabled,
  3. FileUploadConfig? fileUploadConfig,
  4. FileUploadConfig? imageUploadConfig,
  5. required String name,
})

Returns a new AppEventResponse instance.

Implementation

AppEventResponse({
  this.asyncUrlEnrichEnabled,
  required this.autoTranslationEnabled,
  this.fileUploadConfig,
  this.imageUploadConfig,
  required this.name,
});