copyWith method

AssetReportAuditCopyCreateRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? assetReportToken,
  4. String? auditorId,
})

Implementation

AssetReportAuditCopyCreateRequest copyWith(
    {String? clientId,
    String? secret,
    String? assetReportToken,
    String? auditorId}) {
  return AssetReportAuditCopyCreateRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      assetReportToken: assetReportToken ?? this.assetReportToken,
      auditorId: auditorId ?? this.auditorId);
}