grant static method

Future<bool?> grant(
  1. List<KettleConsent> consents
)

Implementation

static Future<bool?> grant(List<KettleConsent> consents) =>
    _channel.invokeMethod(
        'grant', {"consents": consents.map((e) => e.value).toList()});