OnProperties typedef

OnProperties = void Function(Iterable<MapEntry<TagHandle, GlobalTag>> tags, Iterable<(String, Object?)> anchors)

Callback for properties captured after a YamlDumper has fully dumped an object.

Implementation

typedef OnProperties =
    void Function(
      Iterable<MapEntry<TagHandle, GlobalTag>> tags,
      Iterable<(String anchor, Object? object)> anchors,
    );