PropertyDescriptor constructor
PropertyDescriptor({})
Implementation
factory PropertyDescriptor({
_i2.bool? configurable,
_i2.bool? enumerable,
_i2.dynamic value,
_i2.bool? writable,
_i2.dynamic Function()? get,
void Function([_i2.dynamic])? set,
}) =>
PropertyDescriptor._(
configurable: configurable,
enumerable: enumerable,
value: value,
writable: writable,
get: get == null ? null : _i6.allowInterop(get),
set: set == null ? null : _i6.allowInterop(set),
);