updateShouldNotify method

  1. @override
bool updateShouldNotify(
  1. covariant MapLayout oldWidget
)
override

Whether the framework should notify widgets that inherit from this widget.

Implementation

@override
bool updateShouldNotify(covariant MapLayout oldWidget) {
  return oldWidget.tileSize != tileSize ||
      oldWidget.controller != controller ||
      oldWidget.builder != builder;
}