notifyLayoutChange method

void notifyLayoutChange(
  1. Size boardSize
)

Notifies about layout change

Implementation

void notifyLayoutChange(Size boardSize) {
  if (_isDisposed) return;
  _callbacks?.onLayoutChange?.call(boardSize);
}