ElasticsearchClusterConfigStatus.fromJson constructor
Implementation
factory ElasticsearchClusterConfigStatus.fromJson(Map<String, dynamic> json) {
return ElasticsearchClusterConfigStatus(
options: ElasticsearchClusterConfig.fromJson(
json['Options'] as Map<String, dynamic>),
status: OptionStatus.fromJson(json['Status'] as Map<String, dynamic>),
);
}