Just send what you want for arguments. Get accepts anything here, whether it is a String, a Map, a List, or even a class instance.
Apenas envie o que você quiser no parâmetro `arguments`. Get aceita qualquer coisa aqui, seja String, Map, List, ou até a instância de uma classe.
```dart
Get.toNamed("/NextScreen",arguments:'Get is the best');
Get.toNamed("/ProximaTela",arguments:'Get é o melhor');
```
on your class or controller:
Na sua classe ou controller:
```dart
print(Get.arguments);
//print out: Get is the best
print(Get.arguments);//mostra: Get é o melhor
```
#### Links de Url dinâmicos
#### Dynamic urls links
Get offer advanced dynamic urls just like on the Web. Web developers have probably already wanted this feature on Flutter, and most likely have seen a package promise this feature and deliver a totally different syntax than a URL would have on web, but Get also solves that.
Get oferece links de url dinâmicos assim como na Web.
Desenvolvedores Web provavelmente já queriam essa featura no Flutter, e muito provavelmente viram um package que promete essa feature e entrega uma sintaxe totalmente diferente do que uma url teria na web, mas o Get também resolve isso.
Na segunda tela receba os dados usando `Get.parameters[]`
```dart
print(Get.parameters['user']);
// out: 34954
print(Get.parameters['user']);// valor: 34954
```
E agora, tudo que você precisa fazer é usar `Get.toNamed)` para navegar por suas rotas nomeadas, sem nenhum `context` (você pode chamar suas rotas diretamente do seu BLoc ou do Controller), e quando seu aplicativo é compilado para a web, suas rotas vão aparecer na url :heart:
And now, all you need to do is use Get.toNamed() to navigate your named routes, without any context (you can call your routes directly from your BLoC or Controller class), and when your app is compiled to the web, your routes will appear in the url <3