getSection method

SectionData getSection(
  1. String section, [
  2. String? sectionFallback
])

Implementation

SectionData getSection(String section, [String? sectionFallback]) {
  var content = _contentSections[section];

  content ??= _contentSections[sectionFallback];

  final payload = (
    content: content ?? '',
    options: sections[section] ?? const ContentOptions(),
  );

  return payload;
}