We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32b1817 commit f629d9aCopy full SHA for f629d9a
lib/src/html_generator.dart
@@ -687,6 +687,10 @@ class ConstructorTemplateData extends TemplateData {
687
String get layoutTitle =>
688
_layoutTitle(constructor.name, 'constructor', constructor.isDeprecated);
689
List get navLinks => [package, _library, clazz];
690
- List<Subnav> get subnavLinks => _gatherSubnavForInvokable(constructor);
+ List<Subnav> get subnavItems => _gatherSubnavForInvokable(constructor);
691
String get htmlBase => '../..';
692
+ String get title =>
693
+ '${constructor.name} constructor - ${clazz.name} class - ${_library.name} library - Dart API';
694
+ String get metaDescription =>
695
+ 'API docs for the ${constructor.name} constructor from the ${clazz} class from the ${_library.name} library, for the Dart programming language.';
696
}
0 commit comments