initWithKey method

void initWithKey(
  1. BuildContext context,
  2. String key,
  3. String uid
)

Implementation

void initWithKey(BuildContext context, String key, String uid) {
  AppManager.shared.appKey = key;
  AppManager.shared.userId = uid;
  _context = context;
  _intializeSDK(AppManager.shared.appKey);
}