QudsAppController constructor
QudsAppController({
- Function? onAppSet,
- required List<
QudsProvider> providers, - String? encryptionKey,
- 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});