storageCollectionRead<T> function
Read a collection from the storage class.
Implementation
Future<List<T>> storageCollectionRead<T>(
String key, {
Map<Type, dynamic>? modelDecoders,
}) async {
return await NyStorage.readCollection<T>(key, modelDecoders: modelDecoders);
}