HMSError constructor Null safety

HMSError(
  1. {String? id,
  2. HMSErrorCode? code,
  3. required String message,
  4. required String description,
  5. required String action,
  6. required Map? params}
)

Implementation

HMSError({
  this.id,
  this.code,
  required this.message,
  required this.description,
  required this.action,
  required this.params,
});