PropertyDescriptor constructor

PropertyDescriptor({
  1. required String name,
  2. RemoteObject? value,
  3. bool? writable,
  4. RemoteObject? get,
  5. RemoteObject? set,
  6. required bool configurable,
  7. required bool enumerable,
  8. bool? wasThrown,
  9. bool? isOwn,
  10. 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});