jsonDecoder property

dynamic Function(Map<String, dynamic>) jsonDecoder

Implementation

Function(Map<String, dynamic>) get jsonDecoder {
  if (_processorMap[this] == null) {
    throw Exception("$this is not mapped to a JSON parser!");
  }

  return _processorMap[this]!;
}