shouldUserStatusBeCollected property

Future<bool> shouldUserStatusBeCollected

Determine if the User Status (consent) should be collected or not. User Status should be collected if:

  • Regulation is different from NONE and
  • User status is partial and
  • The number of days before displaying the notice again has exceeded the limit specified on the Console or no User Status has been saved

Implementation

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