launch method

Future<void> launch(
  1. String source
)

Implementation

Future<void> launch(String source) async {
  await Process.run('xdg-open', [source]);
}