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