AppSessionSnapshot constructor

const AppSessionSnapshot({
  1. required Map<String, dynamic> publicStorage,
  2. required Map<String, dynamic> secureStorage,
  3. required Map<String, dynamic> keychain,
  4. Locale? locale,
})

Implementation

const AppSessionSnapshot({
  required this.publicStorage,
  required this.secureStorage,
  required this.keychain,
  this.locale,
});