notifyPinUpdated method Null safety

void notifyPinUpdated(
  1. BaseChannel channel
)

Implementation

void notifyPinUpdated(BaseChannel channel) {
  _channelHandlers.values.forEach((element) {
    element.onPinUpdated(channel);
  });
}