set method
Write a property value given an instance
instance the instance
value the value to write
context the context object
Implementation
@override
void set(dynamic instance, dynamic value, MappingContext context) {
if ( value == null ) {
if (includeNull)
(instance as Map)[name] = value;
}
else (instance as Map)[name] = value;
}