onChangeUris method

void onChangeUris(
  1. bool selfChange,
  2. List<String?> uris,
  3. int flags
)

Gets called when a content change occurs. Includes the changed content uris when available.

By default calls onChange on all the uris.

Implementation

void onChangeUris(bool selfChange, List<String?> uris, int flags) {
  for (final uri in uris) {
    onChange(selfChange, uri, flags);
  }
}