stringify method
The mapping method to get the string representation of value
.
Implementation
@override
String stringify(T value, MappingContext context) {
return '$id(${_members.map((f) {
return '${f.name}: ${context.container.asString(f.get(value))}';
}).join(', ')})';
}