defineProperty property

bool Function(T, Object, PropertyDescriptor) get defineProperty

Implementation

_i2.bool Function(
  T,
  _i2.Object,
  _i3.PropertyDescriptor,
) get defineProperty => (
      T p0,
      _i2.Object p1,
      _i3.PropertyDescriptor p2,
    ) =>
        _i4.callMethod(
          _i4.getProperty(
            this,
            'defineProperty',
          ),
          r'call',
          [
            this,
            p0,
            p1,
            p2,
          ],
        );
set defineProperty (bool value(T, Object, PropertyDescriptor))

Implementation

set defineProperty(
    _i2.bool Function(
      T,
      _i2.Object,
      _i3.PropertyDescriptor,
    ) value) {
  _i4.setProperty(
    this,
    'defineProperty',
    _i4.allowInterop(value),
  );
}