In Dart, I am working on a web game. In this I need a function where I can get data from a URL, just as you would get it in PHP. How should I do it?
Say, for example, when I boot my web game, add the following to my the URL-address: ?id=15&randomNumber=3.14. How can I get them in Dart either as a source string (preferred) or in a different format?
source
share