copyWith method

AuditRecordArray copyWith({
  1. List<AuditRecord>? results,
  2. int? start,
  3. int? limit,
  4. int? size,
  5. GenericLinks? links,
})

Implementation

AuditRecordArray copyWith(
    {List<AuditRecord>? results,
    int? start,
    int? limit,
    int? size,
    GenericLinks? links}) {
  return AuditRecordArray(
    results: results ?? this.results,
    start: start ?? this.start,
    limit: limit ?? this.limit,
    size: size ?? this.size,
    links: links ?? this.links,
  );
}