BaseResp constructor

BaseResp({
  1. required int statusCode,
  2. required bool status,
  3. String? errorMessage,
  4. dynamic errorDescription,
})

Implementation

BaseResp({
  required this.statusCode,
  required this.status,
  this.errorMessage,
  this.errorDescription,
});