ServicesOfJournalProvider constructor

ServicesOfJournalProvider(
  1. Journal journal
)

Provider of groups of ServiceOfJournal sorted by ServiceState.

{@category Providers}

Copied from servicesOfJournal.

Implementation

ServicesOfJournalProvider(
  this.journal,
) : super.internal(
        (ref) => servicesOfJournal(
          ref,
          journal,
        ),
        from: servicesOfJournalProvider,
        name: r'servicesOfJournalProvider',
        debugGetCreateSourceHash:
            const bool.fromEnvironment('dart.vm.product')
                ? null
                : _$servicesOfJournalHash,
        dependencies: ServicesOfJournalFamily._dependencies,
        allTransitiveDependencies:
            ServicesOfJournalFamily._allTransitiveDependencies,
      );