farmako / flutter_restart

MIT License
12 stars 2 forks source link

feat: entry point arguments #6

Closed alexmercerind closed 3 months ago

alexmercerind commented 3 months ago
restart(args: ['--route', '/home']);
void main(List<String> args) {
  // Prints ['--route', '/home'].
  print(args);
}