removeConnectionWhere method
Implementation
void removeConnectionWhere(bool Function(EdgeConnectionsModel) test) {
_notifier.value = data.copyWith(
connections: data.connections.where((e) => !test(e)).toList(),
);
}
void removeConnectionWhere(bool Function(EdgeConnectionsModel) test) {
_notifier.value = data.copyWith(
connections: data.connections.where((e) => !test(e)).toList(),
);
}