setFishCount method

void setFishCount(
  1. int count
)

Update the live fish population count.

Implementation

void setFishCount(int count) {
  _onSetFishCount?.call(count);
}