supportsProperty 方法
- String propertyName
如果提供的 CSS 属性名在这个元素上受支持,将返回 true。
请注意属性名使用驼峰式,不使用破折号。此方法如果属性可以通过非前缀或前缀的属性访问,则返回 true。
实现
bool supportsProperty(String propertyName) {
return _supportsProperty(propertyName) ||
_supportsProperty(_camelCase("${Device.cssPrefix}$propertyName"));
}