removeDestination method

void removeDestination(
  1. LogDestination destination
)

Implementation

void removeDestination(LogDestination destination) {
  _destinations.removeWhere((d) => d.identifier == destination.identifier);
}