Optional
realtime: RealtimeRetrieve a specific feature toggle with value for current tenant.
Example
(async () => {
const featureToggleKey = 'my-custom-feature';
const {data, res} = await featureService.detail(featureToggleKey);
})();
Retrieve list of feature toggles with values for current tenant.
Example
(async () => {
const {data, res} = await featureService.list();
})();
This class allows reading a feature toggles for current tenant.