getGPPString static method
Get GPP consent string
Returns the current GPP consent string, or null if not set.
Implementation
static Future<String?> getGPPString() async {
try {
return await _invokeMethod<String>('getGPPString');
} catch (e) {
return null;
}
}