copyWith method
Implementation
AuditRecords copyWith(
{int? limit, int? offset, List<AuditRecordBean>? records, int? total}) {
return AuditRecords(
limit: limit ?? this.limit,
offset: offset ?? this.offset,
records: records ?? this.records,
total: total ?? this.total,
);
}