HMSException constructor

HMSException({
  1. String? id,
  2. HMSExceptionCode? code,
  3. required String? message,
  4. required String description,
  5. required String action,
  6. required bool isTerminal,
  7. Map? params,
  8. bool? canRetry,
})

Implementation

HMSException(
    {this.id,
    this.code,
    required this.message,
    required this.description,
    required this.action,
    required this.isTerminal,
    this.params,
    this.canRetry});