exchangeCodeForToken method

Future<Map<Object?, Object?>?> exchangeCodeForToken({
  1. required String tenantId,
  2. required String clientId,
  3. String? clientSecret,
  4. required String code,
  5. required String redirectUrl,
  6. String? scope,
})

Implementation

Future<Map<Object?, Object?>?> exchangeCodeForToken({
  required String tenantId,
  required String clientId,
  String? clientSecret,
  required String code,
  required String redirectUrl,
  String? scope,
}) {
  throw UnimplementedError(
    'exchangeCodeForToken() has not been implemented.',
  );
}