checkForUpdate property

Future<bool> checkForUpdate

Returns trueif an update to the Notice and consents is needed.

Implementation

static Future<bool> get checkForUpdate async {
  final bool result = await _channel.invokeMethod('checkForUpdate');
  return result;
}