supported property
Checks if the MediaStream APIs are supported on the current platform.
See also:
Implementation
static bool get supported => JS(
'bool',
'''!!(#.getUserMedia || #.webkitGetUserMedia ||
#.mozGetUserMedia || #.msGetUserMedia)''',
window.navigator,
window.navigator,
window.navigator,
window.navigator);