GetValueCreator typedef
Typedef for a function that gets the value of a field on an instance of type Object
.
instance
: The object instance.name
: The name of the field to retrieve.
Returns the field value as Object?.
Implementation
typedef GetValueCreator = Object? Function(Object instance, String name);