RTMException constructor

RTMException({
  1. required String code,
  2. String? message,
  3. dynamic details,
})

To create a RTMException, code is needed.

Implementation

RTMException({
  required this.code,
  this.message,
  this.details,
});