previousTitle property

ValueListenable<String?> get previousTitle

Implementation

ValueListenable<String?> get previousTitle {
  assert(
    _previousTitle != null,
    'Cannot read the previousTitle for a route that'
    ' has not yet been installed',
  );
  return _previousTitle!;
}