MiniProgramAuthController.secure constructor
MiniProgramAuthController.secure({
- MiniProgramAuthBackendPaths paths = const MiniProgramAuthBackendPaths(),
- FlutterSecureStorage? storage,
- MiniProgramAuthClock? clock,
Implementation
factory MiniProgramAuthController.secure({
MiniProgramAuthBackendPaths paths = const MiniProgramAuthBackendPaths(),
FlutterSecureStorage? storage,
MiniProgramAuthClock? clock,
}) {
return MiniProgramAuthController(
store: SecureMiniProgramAuthStore(storage: storage),
paths: paths,
clock: clock,
);
}