copyWith method

AssetReportGetRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? assetReportToken,
  4. bool? includeInsights,
})

Implementation

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