copyWith method

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

Implementation

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