fromJsonProducerMap<T> static method
Implementation
// TODO(edufolly): Create tests.
static T? fromJsonProducerMap<T>(
dynamic value, {
required T Function(Map<String, dynamic> e) producer,
}) =>
value != null ? producer(value) : null;