operator [] method

TestInfo<St>? operator [](
  1. Type actionType
)

Returns the first info corresponding to the end of the given action type.

Implementation

TestInfo<St>? operator [](Type actionType) =>
    _info.firstWhereOrNull((info) => info.type == actionType);