getValue<T> abstract method

Object? getValue<T>(
  1. T instance,
  2. String name
)

Gets the value of an instance field name on the given instance of type T.

  • instance: The object from which to get the field value.
  • name: The name of the field.

Returns the value of the field. Throws an UnImplementedResolverException if the field cannot be resolved.

Implementation

Object? getValue<T>(T instance, String name);