Config constructor

Config({
  1. required dynamic credentials,
  2. required dynamic packageInfo,
  3. required bool isDebugMode,
  4. GlobalKey<State<StatefulWidget>>? appKey,
})

Implementation

Config({
  required this.credentials,
  // required this.clientId,
  // required this.clientSecret,
  // this.version = "",
  required this.packageInfo,
  required this.isDebugMode,
  this.appKey,
});