readCollection<T> method

Future<List<T>> readCollection<T>()

Read a collection from NyStorage

Implementation

Future<List<T>> readCollection<T>() async {
  return await NyStorage.readCollection(this);
}