haveSecrets method

  1. @override
bool haveSecrets(
  1. String? getSecret(
    1. String name
    )
)
override

Returns true if all of the auth requests have all the secrets.

Implementation

@override
bool haveSecrets(String? Function(String name) getSecret) =>
    auths.every((e) => e.haveSecrets(getSecret));