appendParent method

void appendParent(
  1. BuildContext context,
  2. List<Widget> widgets
)

Implementation

void appendParent(BuildContext context, List<Widget> widgets) {
  if (parent != null) {
    widgets.add(postTL(context, parent!));
  }
}