disposeFamilyParam<N extends FamilyNotifier<dynamic, P, dynamic>, P> abstract method

void disposeFamilyParam<N extends FamilyNotifier<dynamic, P, dynamic>, P>(
  1. BaseProvider<N, dynamic> provider,
  2. P param
)

Disposes the param of a family provider. While the ordinary dispose method disposes the whole provider, this method only disposes the param. Calling this method multiple times has no effect.

Implementation

void disposeFamilyParam<N extends FamilyNotifier<dynamic, P, dynamic>, P>(
  BaseProvider<N, dynamic> provider,
  P param,
);