Skip to content

Commit

Permalink
Making DeepLink constructor public to improve testing capabilities (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
theolm authored Nov 30, 2024
1 parent c54c709 commit 59075fa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import kotlinx.datetime.Clock
* @property data The raw URI string used to create the deep link object.
* @property timestamp The timestamp of the deep link creation. Defaults to the current time.
*/
data class DeepLink internal constructor(
data class DeepLink(
val data: String,
val timestamp: Long = Clock.System.now().toEpochMilliseconds()
) {
Expand Down

0 comments on commit 59075fa

Please sign in to comment.