object property

Object? get object

Gets or sets the Object that was modified. The default is null.

For ChangedEvent.Transaction changes, this may be the Transaction.

Implementation

_i2.Object? get object => _i4.getProperty(
      this,
      'object',
    );
set object (Object? value)

Implementation

set object(_i2.Object? value) {
  _i4.setProperty(
    this,
    'object',
    value ?? _i5.undefined,
  );
}