BaseResponseTest<T> constructor

BaseResponseTest<T>({
  1. required int? errorCode,
  2. T? data,
  3. String? errorMsg,
})

Implementation

BaseResponseTest({
  required this.errorCode,
  this.data,
  this.errorMsg,
});