ResultListDto<T> constructor

ResultListDto<T>(
  1. int code,
  2. List<T>? data,
  3. String? errorCode,
  4. String? message,
  5. int? record,
)

Implementation

ResultListDto(
    this.code, this.data, this.errorCode, this.message, this.record);