setAgreePrivacy static method

Future<void> setAgreePrivacy(
  1. bool? isAgree
)

Implementation

static Future<void> setAgreePrivacy(bool? isAgree) async {
  // print log
  if (fluttifyLogEnabled) {
    debugPrint('fluttify-dart: BMKMapManager::setAgreePrivacy([\'isAgree\':$isAgree])');
  }

  // invoke native method
  final __result__ = await kBmapCoreFluttifyChannel.invokeMethod('BMKMapManager::setAgreePrivacy', {"isAgree": isAgree});


  // handle native call


  return __result__;
}