Closed
Description
Refresh bool is hard coded to YES for ios. Android uses the bool as expected.
} else if ([@"getIdToken" isEqualToString:call.method]) {
[[FIRAuth auth].currentUser
getIDTokenForcingRefresh:YES
completion:^(NSString *_Nullable token, NSError *_Nullable error) {
result(error != nil ? error.flutterError : token);
}];