get method

Future<T?> get()

Gets the value from the default PrfService instance.

Returns null if the value doesn't exist and no default was provided.

Implementation

Future<T?> get() async {
  return await getValue(PrfService.instance);
}