notificationsUpdateFcmTokenFunction property

String get notificationsUpdateFcmTokenFunction

Implementation

static String get notificationsUpdateFcmTokenFunction {
  _notificationsUpdateFcmTokenFunction ??= const String.fromEnvironment(
              'NOTIFICATIONS_UPDATE_FCM_TOKEN_FUNCTION',
              defaultValue: '')
          .isNotEmpty
      ? const String.fromEnvironment('NOTIFICATIONS_UPDATE_FCM_TOKEN_FUNCTION', defaultValue: '')
      : (_notificationsUpdateFcmTokenFunctionDefault ?? 'notificationsUpdateFcmToken');
  return _notificationsUpdateFcmTokenFunction!;
}