addMapConverters static method

void addMapConverters(
  1. ConverterRegistry registry
)

Add map-related converters.

Implementation

static void addMapConverters(ConverterRegistry registry) {
  final conversionService = registry as ConversionService;

  registry.addPairedConverter(StringToMapGenericConverter(conversionService));
  registry.addPairedConverter(MapToStringGenericConverter(conversionService));
  registry.addPairedConverter(MapToMapGenericConverter(conversionService));
}