AzureTranslationError constructor

const AzureTranslationError({
  1. required int httpCode,
  2. int? code,
  3. String? message,
})

Implementation

const AzureTranslationError({
  required this.httpCode,
  this.code,
  this.message,
});