didChangeMapStream method

bool didChangeMapStream({
  1. required MapUpdate mapUpdate,
  2. required MapStream mapStream,
})

Called when an attached MapStream update is received. Return bool instructs the widget whether to update.

Implementation

bool didChangeMapStream({
  required MapUpdate mapUpdate,
  required MapStream mapStream,
}) {
  return true;
}