dealerNotificationSettingsApiProvider top-level property
final
Implementation
final dealerNotificationSettingsApiProvider =
FutureProvider<DealerNotificationSettingsDTO>(
(ref) => ref
.watch(energyManagementV3ApiProvider.future)
.then((api) => api.kemApiV3DealerSettingsNotificationGet())
.then(responseToValue),
);