supported 属性
检查当前平台是否支持 MediaStream API。
另请参阅
实现
static bool get supported => JS(
'bool',
'''!!(#.getUserMedia || #.webkitGetUserMedia ||
#.mozGetUserMedia || #.msGetUserMedia)''',
window.navigator,
window.navigator,
window.navigator,
window.navigator);