showBVNConsent static method

Future<Map?> showBVNConsent(
  1. String tag,
  2. String appBundleId,
  3. String partnerName,
  4. String privacyPolicyUrl,
  5. bool isProduction,
)

Implementation

static Future<Map<dynamic, dynamic>?> showBVNConsent(
    String tag,
    String partnerLogo,
    String appBundleId,
    String partnerName,
    String privacyPolicyUrl,
    bool isProduction) async {
  try {
    var result = await _channel.invokeMethod('showBVNConsent', {
      "tag": tag,
      "partnerLogo": partnerLogo,
      "appBundleId": appBundleId,
      "partnerName": partnerName,
      "privacyPolicyUrl": privacyPolicyUrl,
      "isProduction": isProduction,
    });
    return result;
  } catch (e) {
    rethrow;
  }
}