BaseResp constructor

const BaseResp({
  1. required int errorCode,
  2. String? errorMessage,
})

Implementation

const BaseResp({
  required this.errorCode,
  this.errorMessage,
});