propertyValue<T> method

Future<T> propertyValue<T>(
  1. String propertyName
)

Fetches the jsonValue of a single property from the referenced object.

Implementation

Future<T> propertyValue<T>(String propertyName) async {
  var value = await (await property(propertyName)).jsonValue as T;
  return value;
}