removeHandler method
Removes a log handler from a specific channel.
Implementation
void removeHandler(LogHandler handler, {String channel = 'app'}) {
final handlers = _channels[channel];
if (handlers != null) {
handlers.remove(handler);
if (handlers.isEmpty) {
_channels.remove(channel);
}
}
}