getValue<T> abstract method
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);