UnknownSignInWithAppleException constructor

UnknownSignInWithAppleException({
  1. required PlatformException platformException,
})

Implementation

UnknownSignInWithAppleException({
  required PlatformException platformException,
}) : super(
        code: platformException.code,
        message: platformException.message,
        details: platformException.details,
      );