check method
Checks if consent is required, with an option to use cached results.
Implementation
@override
Future<bool> check({bool isCached = false}) async {
return await methodChannel.invokeMethod('check', {'isCached': isCached}) ??
false;
}