init method

Future<void> init({
  1. bool useTestKey = false,
  2. bool enableLogging = false,
  3. bool disableTracking = false,
})

Initialize Branch SDK useTestKey - Sets true to use the test key_test_... [enableLogging] - Sets trueturn on debug logging [disableTracking] - Setstrueto disable tracking in Branch SDK for GDPR compliant on start. After having consent, setsfalse`

Implementation

Future<void> init(
    {bool useTestKey = false,
    bool enableLogging = false,
    bool disableTracking = false}) async {
  throw UnimplementedError('init has not been implemented');
}