AuthFlowScope constructor

AuthFlowScope({
  1. required AuthState authState,
  2. required dynamic error,
  3. required dynamic runAuthAction(
    1. Future<void> action(), {
    2. AuthState endState,
    }),
})

Implementation

AuthFlowScope({
  required this.authState,
  required this.error,
  required this.runAuthAction,
});