maybeOf static method

FdcLocalizations? maybeOf(
  1. BuildContext context
)

Returns FDC localizations, or null when the app did not register the FDC delegate.

Implementation

static FdcLocalizations? maybeOf(BuildContext context) {
  return Localizations.of<FdcLocalizations>(context, FdcLocalizations);
}