AffectedByStartingStylesFlagUpdatedEvent.fromJson constructor
Implementation
factory AffectedByStartingStylesFlagUpdatedEvent.fromJson(
Map<String, dynamic> json,
) {
return AffectedByStartingStylesFlagUpdatedEvent(
nodeId: dom.NodeId.fromJson(json['nodeId'] as int),
affectedByStartingStyles:
json['affectedByStartingStyles'] as bool? ?? false,
);
}