Logging.fromJson constructor
Implementation
factory Logging.fromJson(Map<String, dynamic> json) {
return Logging(
clusterLogging: (json['clusterLogging'] as List?)
?.whereNotNull()
.map((e) => LogSetup.fromJson(e as Map<String, dynamic>))
.toList(),
);
}