setupDengageAndroid static method

Future<void> setupDengageAndroid(
  1. bool logStatus,
  2. String firebaseKey,
  3. bool enableGeofence
)

Implementation

static Future<void> setupDengageAndroid(
    bool logStatus, String firebaseKey, bool enableGeofence) async {
  return await _channel.invokeMethod("dEngage#setupDengage", {
    'logStatus': logStatus,
    'firebaseKey': firebaseKey,
    'enableGeofence' : enableGeofence
  });
}