registerAuthAction static method

void registerAuthAction(
  1. AuthAction action
)

Special callbacks can be registered as AuthAction by passing AuthAction to action.

AuthActionactionに渡すことで特殊なコールバックをAuthActionとして登録することができます。

Implementation

static void registerAuthAction(AuthAction action) {
  _actions.add(action);
}