titleText property Null safety

String titleText

Returns the title text represented by the NavigationPage.

Implementation

String get titleText {
  switch (this) {
    case NavigationPage.screens:
      return "Screens";
    case NavigationPage.templates:
      return "Templates";
    case NavigationPage.settings:
      return "Settings";
  }
}