addDestination method
Implementation
void addDestination(LogDestination destination) {
if (!_destinations.any((d) => d.identifier == destination.identifier)) {
_destinations.add(destination);
}
}
void addDestination(LogDestination destination) {
if (!_destinations.any((d) => d.identifier == destination.identifier)) {
_destinations.add(destination);
}
}