ApiOnResponse constructor

ApiOnResponse({
  1. bool showLog = false,
  2. required RespData mapToRespData(
    1. Map
    ),
  3. required dynamic doShowErrorMsg(
    1. String
    ),
})

Implementation

ApiOnResponse({
  this.showLog = false,
  required this.mapToRespData,
  required this.doShowErrorMsg,
});