123456789101112131415161718192021222324252627282930313233343536 |
-
-
- #import "FIRSendVerificationCodeResponse.h"
-
- NS_ASSUME_NONNULL_BEGIN
-
- @implementation FIRSendVerificationCodeResponse
-
-
- - (nullable NSString *)expectedKind {
- return nil;
- }
-
- - (BOOL)setWithDictionary:(NSDictionary *)dictionary
- error:(NSError *_Nullable *_Nullable)error {
- _verificationID = [dictionary[@"sessionInfo"] copy];
- return YES;
- }
-
- @end
-
- NS_ASSUME_NONNULL_END
|