footer property

Generated

Implementation

GeneralFrameworkDocumentationFooter get footer {
  try {
    if (rawData["footer"] is Map == false) {
      return GeneralFrameworkDocumentationFooter({});
    }
    return GeneralFrameworkDocumentationFooter(rawData["footer"] as Map);
  } catch (e) {
    return GeneralFrameworkDocumentationFooter({});
  }
}

Generated

Implementation

set footer(GeneralFrameworkDocumentationFooter value) {
  rawData["footer"] = value.toJson();
}