ResponseDto<T> constructor

ResponseDto<T>({
  1. bool? succeeded,
  2. String? errorMessage,
  3. String? errorCode,
  4. T? response,
})

Implementation

ResponseDto({
  bool? succeeded,
  this.errorMessage,
  this.errorCode,
  this.response,
}) : super(succeeded);