flutter_map パッケージを最新のアップデートに更新したところ、次の警告が表示されました。
void _increaseZoom() {
final zoom = widget.mapState.zoom + 1;
widget.mapState.move(widget.mapState.center, zoom); The parameter 'source' is required.
}
void _decreaseZoom() {
final zoom = widget.mapState.zoom - 1;
widget.mapState.move(widget.mapState.center, zoom); The parameter 'source' is required.
}