getAllByTag method

  1. @override
Iterable<GedcomStructure> getAllByTag(
  1. String tag
)
inherited

Returns nested tags with the matching tag.

Method only traverses substructures.

Implementation

@override
Iterable<T> getAllByTag(String tag) {
  return substructures.where((structure) => structure.tag == tag);
}