has 方法

bool has(
  1. String property
)

hasProperty 的简写辅助函数,用于检查此 JSObject 是否包含属性键 property,但它接收和返回 Dart 值。

实现

bool has(String property) => hasProperty(property.toJS).toDart;