buildContentSection method

Widget buildContentSection(
  1. SectionData section
)

Implementation

Widget buildContentSection(SectionData section) {
  return Expanded(
    flex: section.options.flex,
    child: _buildContent(section.content, section.options),
  );
}