has 方法
- String property
是 hasProperty 的简写辅助方法,用于检查此 JSObject 是否包含属性键 property
,但接收并返回 Dart 值。
实现
bool has(String property) => hasProperty(property.toJS).toDart;
是 hasProperty 的简写辅助方法,用于检查此 JSObject 是否包含属性键 property
,但接收并返回 Dart 值。
bool has(String property) => hasProperty(property.toJS).toDart;