haveSecrets method

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

Used to check if the getSecret function has all the secrets for this auth.

Implementation

@override
bool haveSecrets(String? Function(String name) getSecret) =>
    getSecret(secretName) != null;