AuthAnonymousStoreConformanceFixture constructor

const AuthAnonymousStoreConformanceFixture({
  1. required AuthStore store,
  2. required AuthAnonymousAccountMutationStore mutations,
  3. required AuthAnonymousStoreConformanceFaultController faults,
  4. FutureOr<void> dispose()?,
})

Creates a fixture from the supplied stores and fault controller.

Implementation

const AuthAnonymousStoreConformanceFixture({
  required this.store,
  required this.mutations,
  required this.faults,
  this.dispose,
});