history property

List<Transaction> get history

This read-only property returns the whole history, a list of all of the Transactions, each representing a transaction with some number of ChangedEvents.

You should not modify this List.

Implementation

_i3.List<_i3.Transaction> get history => _i4.getProperty(
      this,
      'history',
    );
set history (List<Transaction> value)

Implementation

set history(_i3.List<_i3.Transaction> value) {
  _i4.setProperty(
    this,
    'history',
    value,
  );
}