readValue<T extends Object> abstract method

Future<T?> readValue<T extends Object>(
  1. ValueFormat<T> format
)

Convenience method that exposes loading value as Future.

Attempts to read value for given format. Will return null if the value is not available or the data is virtual (macOS and Windows).

Implementation

Future<T?> readValue<T extends Object>(ValueFormat<T> format);