Sourabh Rawat
10/04/2021, 1:57 PM<https://foo.com/{id}/car/{bar}>
?
I need to set the values of id
and bar
Thanks in advance.Matteo Mirk
10/04/2021, 2:17 PMfun urlTemplate(id: String, bar: String) = "<https://foo.com/${id}/car/${bar}>"
urlTemplate("1", "foo") // <https://foo.com/1/car/foo>
christophsturm
10/04/2021, 2:29 PMSourabh Rawat
10/05/2021, 7:14 AMurlTemplate
for that.christophsturm
10/05/2021, 8:19 AMMatteo Mirk
10/05/2021, 10:01 AM