preparePlayIntegrity method
Warms up the Google Play Integrity API provider (Android only).
This helps reduce latency for the actual token request.
Implementation
@override
Future<bool> preparePlayIntegrity(String cloudProjectNumber) async {
// Call the native method to warm up the Integrity API provider
final success = await methodChannel.invokeMethod<bool>(
'preparePlayIntegrity',
{'cloudProjectNumber': cloudProjectNumber},
);
return success ?? false;
}