LockallyException constructor

LockallyException({
  1. required int status,
  2. required String message,
  3. String? code,
  4. String? requestId,
})

Implementation

LockallyException({
  required this.status,
  required this.message,
  this.code,
  this.requestId,
});