fcmWebVapidKeyDefault property

set fcmWebVapidKeyDefault (String? value)

Programmatic default for fcmWebVapidKey. Set this from your app's config (before bootstrap). Overridden by the FCM_WEB_VAPID_KEY dart-define when provided.

NOTE: a Web Push VAPID public key is public by design (it ships in the web app), so a dart-define or per-flavor hardcode here is not a secret leak — only the VAPID private key must stay server-side.

Implementation

static set fcmWebVapidKeyDefault(String? value) =>
    _fcmWebVapidKeyDefault = value;