getSpringById method

Spring? getSpringById(
  1. String id
)

get a spring by name @param id id of the spring to retrieve @return Spring with the specified key

Implementation

Spring? getSpringById(String id) {
  return _mSpringRegistry[id];
}