MiniProgramAuthController.inMemory constructor

MiniProgramAuthController.inMemory({
  1. MiniProgramAuthBackendPaths paths = const MiniProgramAuthBackendPaths(),
  2. MiniProgramAuthClock? clock,
})

Implementation

factory MiniProgramAuthController.inMemory({
  MiniProgramAuthBackendPaths paths = const MiniProgramAuthBackendPaths(),
  MiniProgramAuthClock? clock,
}) {
  return MiniProgramAuthController(
    store: InMemoryMiniProgramAuthStore(),
    paths: paths,
    clock: clock,
  );
}