storageRead<T> function
Read data from the storage class.
Implementation
Future<dynamic> storageRead<T>(String key,
{Map<Type, dynamic>? modelDecoders}) async {
return await NyStorage.read<T>(key, modelDecoders: modelDecoders);
}