Kotlin: Retrieve public URL

Examples

Returns the URL for an asset in a public bucket

val url = supabase.storage["public-bucket"].publicUrl("folder/avatar1.png")

Returns the URL for an asset in a public bucket with transformations

val url = supabase.storage["public-bucket"].publicRenderUrl("folder/avatar1.png") \{
    size(100, 100)
\}