Logging.fromJson constructor
Implementation
factory Logging.fromJson(Map<String, dynamic> json) {
return Logging(
producerDestinations:
decodeListMessage(
json['producerDestinations'],
Logging_LoggingDestination.fromJson,
) ??
[],
consumerDestinations:
decodeListMessage(
json['consumerDestinations'],
Logging_LoggingDestination.fromJson,
) ??
[],
);
}