copyWith method

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

Implementation

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