copyWith method

AssetReportPDFGetRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? assetReportToken,
  4. AssetReportPDFGetRequestOptions? options,
})

Implementation

AssetReportPDFGetRequest copyWith(
    {String? clientId,
    String? secret,
    String? assetReportToken,
    AssetReportPDFGetRequestOptions? options}) {
  return AssetReportPDFGetRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      assetReportToken: assetReportToken ?? this.assetReportToken,
      options: options ?? this.options);
}