copyWith method

AssetReportRefreshRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? assetReportToken,
  4. int? daysRequested,
  5. AssetReportRefreshRequestOptions? options,
})

Implementation

AssetReportRefreshRequest copyWith(
    {String? clientId,
    String? secret,
    String? assetReportToken,
    int? daysRequested,
    AssetReportRefreshRequestOptions? options}) {
  return AssetReportRefreshRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      assetReportToken: assetReportToken ?? this.assetReportToken,
      daysRequested: daysRequested ?? this.daysRequested,
      options: options ?? this.options);
}