Created
April 7, 2020 23:18
-
-
Save riscait/be2a2505c0cb0f4d91f427225b875cea to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// Apple認証で取得したフルネームを保存して使用するためのクラス | |
class AuthCredentialWithApple { | |
AuthCredentialWithApple({ | |
@required this.authCredential, | |
this.givenName, | |
this.familyName, | |
}); | |
AuthCredential authCredential; | |
String givenName; | |
String familyName; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment