Cm005BaseResponse constructor

Cm005BaseResponse({
  1. bool? success,
  2. String? message,
  3. int? code,
  4. dynamic result,
})

Implementation

Cm005BaseResponse({
  this.success,
  this.message,
  this.code,
  this.result,
});