get method
Read a property value given an instance
instance
the instance
context
the context object
Returns the retrieved value
Implementation
@override
dynamic get(dynamic instance, MappingContext context) {
var value = context.peek(index);
if (value != null) {
return property.get(value, context);
}
else {
return null;
}
}