openUrlInWebview static method

void openUrlInWebview(
  1. String url, {
  2. String title = "",
})

Implementation

static void openUrlInWebview(String url, {String title = ""}) {
  Get.to(() => WebPage(
        url,
        title: title,
      ));
}