Answers for "how to launch url in flutter web"

0

how to launch url in flutter web

import 'dart:html' as html;
void htmlOpenLink() {
  String url = 'https://flutter.dev'; 
  html.window.open(url, '_blank');
}
Posted by: Guest on October-30-2020

Code answers related to "Dart"

Browse Popular Code Answers by Language