Skip to content

Instantly share code, notes, and snippets.

@riscait
Created April 7, 2020 23:18
Show Gist options
  • Save riscait/be2a2505c0cb0f4d91f427225b875cea to your computer and use it in GitHub Desktop.
Save riscait/be2a2505c0cb0f4d91f427225b875cea to your computer and use it in GitHub Desktop.
/// 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