notificationGoToSettingsMaxAskCountDefault property

set notificationGoToSettingsMaxAskCountDefault (int? value)

Implementation

static set notificationGoToSettingsMaxAskCountDefault(int? value) =>
    // null (unlimited) is stored as the sentinel; the map cannot hold null.
    defaultRemoteConfig['notificationGoToSettingsMaxAskCount'] =
        value ?? notificationMaxAskCountUnlimited;