PropertyDescriptor constructor
PropertyDescriptor({
- required String name,
- RemoteObject? value,
- bool? writable,
- RemoteObject? get,
- RemoteObject? set,
- required bool configurable,
- required bool enumerable,
- bool? wasThrown,
- bool? isOwn,
- RemoteObject? symbol,
Implementation
PropertyDescriptor(
{required this.name,
this.value,
this.writable,
this.get,
this.set,
required this.configurable,
required this.enumerable,
this.wasThrown,
this.isOwn,
this.symbol});