| LCOV - code coverage report | ||||||||||||||||||||||
|
||||||||||||||||||||||
Line data Source code 1 : import 'package:sign_in_with_apple/sign_in_with_apple.dart'; 2 : 3 : class SignInWithAppleWrapper { 4 0 : Future<AuthorizationCredentialAppleID> getCredential( 5 : {List<AppleIDAuthorizationScopes>? scopes}) => 6 0 : SignInWithApple.getAppleIDCredential( 7 : scopes: (scopes == null) 8 0 : ? [ 9 : AppleIDAuthorizationScopes.email, 10 : AppleIDAuthorizationScopes.fullName 11 : ] 12 : : scopes); 13 : } |
| Generated by: LCOV version 1.13 |