OrgUnreadCountProvider constructor

OrgUnreadCountProvider(
  1. String orgId
)

See also orgUnreadCount.

Implementation

OrgUnreadCountProvider(String orgId)
  : this._internal(
      (ref) => orgUnreadCount(ref as OrgUnreadCountRef, orgId),
      from: orgUnreadCountProvider,
      name: r'orgUnreadCountProvider',
      debugGetCreateSourceHash: const bool.fromEnvironment('dart.vm.product')
          ? null
          : _$orgUnreadCountHash,
      dependencies: OrgUnreadCountFamily._dependencies,
      allTransitiveDependencies:
          OrgUnreadCountFamily._allTransitiveDependencies,
      orgId: orgId,
    );