open method

Window? open([
  1. String? url = '',
  2. String? target = '_blank',
  3. String? features = ''
])

Implementation

Window? open(
        [String? url = '',
        String? target = '_blank',
        String? features = '']) =>
    js_util.callMethod(this, 'open', [url, target, features]);