removeHashElement method

void removeHashElement(
  1. ActionHashElement element
)

Implementation

void removeHashElement(ActionHashElement element) {
  _hashTargetList.removeWhere((key, value) => value == element);
}