민프

[Flutter] String to Uri 본문

[Flutter]

[Flutter] String to Uri

민프야 2022. 12. 9. 13:24

Uri.parse를 이용한다.

 

 

final String url = "https://jsonplaceholder.typicode.com/photos?albumId=$albumId";
var uri = Uri.parse(url);
Comments