QudsAppController constructor

QudsAppController({
  1. Function? onAppSet,
  2. required List<QudsProvider> providers,
  3. String? encryptionKey,
  4. String? encryptionIV,
})

onAppSet: Called when the app is initialized. encryptionKey, encryptionIV to encrypt the state of the app before saving it in SharedPreferences

Implementation

QudsAppController(
    {this.onAppSet,
    required this.providers,
    this.encryptionKey,
    this.encryptionIV});