nestedTransactionNames property

List<String> get nestedTransactionNames

This read-only property returns a stack of ongoing transaction names. The outermost transaction name will be the first item in the list. The last one will be the name of the most recent (nested) call to #startTransaction.

You should not modify this List.

Implementation

_i3.List<_i2.String> get nestedTransactionNames => _i4.getProperty(
      this,
      'nestedTransactionNames',
    );
set nestedTransactionNames (List<String> value)

Implementation

set nestedTransactionNames(_i3.List<_i2.String> value) {
  _i4.setProperty(
    this,
    'nestedTransactionNames',
    value,
  );
}