stringify method

String stringify(
  1. T value,
  2. MappingContext context
)

The mapping method to get the string representation of value.

Implementation

String stringify(T value, MappingContext context) {
  throw MapperException.unsupportedMethod(MapperMethod.stringify, type);
}