cloudSystemDataFamily top-level property

AutoDisposeProviderFamily<AsyncValue<SystemData>, int> cloudSystemDataFamily
final

Provides Everon system data from our API cloud backend

Implementation

final cloudSystemDataFamily =
    Provider.autoDispose.family<AsyncValue<SystemData>, int>(
  (ref, int id) {
    return ref.watch(generatorDetailsFamily(id)).mapValue(detailsToSystemData);
  },
);