CommonResponse<T> constructor

CommonResponse<T>({
  1. bool? success,
  2. String? message,
  3. T? data,
  4. List<T>? listData,
  5. int? errCode,
})

Implementation

CommonResponse(
    {this.success, this.message, this.data, this.listData, this.errCode
    /*this.meta*/
    });