MapConverter constructor
MapConverter({})
Implementation
MapConverter({
required this.map,
Map<String, Object? Function(dynamic)>? customconverters,
}) {
converters.addAll(FieldFormat.defaultconverters);
if (customconverters != null) {
converters.addAll(customconverters);
}
}