init method

  1. @override
Future<void> init({
  1. List<Scope> scopes = const <Scope>[],
  2. GrantType? grantType,
  3. ProofKeyParameters? proofKeyParameters,
})
override

Implementation

@override
Future<void> init(
    {List<Scope> scopes = const <Scope>[],
    GrantType? grantType,
    ProofKeyParameters? proofKeyParameters}) async {
  this.scopes = scopes;
  this.grantType = grantType;
  this.proofKeyParameters = proofKeyParameters;
}