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