effectiveTitle method

String? effectiveTitle(
  1. BuildContext context
)

Effective title/description for the overlay's BuildContext at show time. Builders take precedence — use for l10n without threading BuildContext through AppTours: titleBuilder: (c) => l10n.of(c).intro.

Implementation

String? effectiveTitle(BuildContext context) =>
    titleBuilder?.call(context) ?? title;