getAll method

List<TestInfo<St>> getAll(
  1. Type actionType
)

Returns all info corresponding to the action type.

Implementation

List<TestInfo<St>> getAll(Type actionType) {
  return _info.where((info) => info.type == actionType).toList();
}