Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add type to account
  • Loading branch information
jmagman committed May 18, 2022
commit 8e70eee46919838986a03b123a807de009b4d369
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,9 @@ - (void)didSignInForUser:(GIDGoogleUser *)user
}
}

- (void)respondWithAccount:(id)account result:(FlutterResult)result error:(NSError *)error {
- (void)respondWithAccount:(NSDictionary<NSString *, id> *)account
result:(FlutterResult)result
error:(NSError *)error {
result(error != nil ? getFlutterError(error) : account);
}

Expand Down