ComputedStyle.fromJson constructor
Implementation
factory ComputedStyle.fromJson(Map<String, dynamic> json) {
return ComputedStyle(
properties: (json['properties'] as List)
.map((e) => NameValue.fromJson(e as Map<String, dynamic>))
.toList(),
);
}