renderTags method

Stream<String> renderTags(
  1. RenderContext context,
  2. Iterable<Tag> children
)

Implementation

Stream<String> renderTags(RenderContext context, Iterable<Tag> children) async* {
  for (final child in children) {
    try {
      yield* child.render(context);
    } catch (error, stacktrace) {
      throw TagRenderException(error, stacktrace, child);
    }
  }
}