AuditRecords constructor

AuditRecords({
  1. int? limit,
  2. int? offset,
  3. List<AuditRecordBean>? records,
  4. int? total,
})

Implementation

AuditRecords(
    {this.limit, this.offset, List<AuditRecordBean>? records, this.total})
    : records = records ?? [];