CSSAnimationStyle.fromJson constructor
Implementation
factory CSSAnimationStyle.fromJson(Map<String, dynamic> json) {
return CSSAnimationStyle(
name: json.containsKey('name') ? json['name'] as String : null,
style: CSSStyle.fromJson(json['style'] as Map<String, dynamic>),
);
}