ComponentConfigurationUpdate.fromJson constructor

ComponentConfigurationUpdate.fromJson(
  1. Map<String, dynamic> json
)

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(),
  );
}