SDKException constructor

SDKException({
  1. int? code,
  2. String? category,
  3. String? reason,
  4. required String description,
})

Implementation

SDKException({
  this.code,
  this.category,
  this.reason,
  required this.description,
});