copyWith method

AssetReportGetRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? assetReportToken,
  4. bool? includeInsights,
  5. bool? fastReport,
  6. AssetReportGetRequestOptions? options,
})

Implementation

AssetReportGetRequest copyWith(
    {String? clientId,
    String? secret,
    String? assetReportToken,
    bool? includeInsights,
    bool? fastReport,
    AssetReportGetRequestOptions? options}) {
  return AssetReportGetRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      assetReportToken: assetReportToken ?? this.assetReportToken,
      includeInsights: includeInsights ?? this.includeInsights,
      fastReport: fastReport ?? this.fastReport,
      options: options ?? this.options);
}