Login constructor

Login(
  1. String appId,
  2. String appKey
)

Implementation

Login(this.appId, this.appKey) {
  _initialize().then((_) {
    _initializationCompleter.complete();
  });
}