SvgDebugAttribute.fromJson constructor
Implementation
factory SvgDebugAttribute.fromJson(Map<String, Object?> json) {
return SvgDebugAttribute(
name: json['name']! as String,
rawValue: json['rawValue'] as String?,
resolvedValue: json['resolvedValue']! as String,
animated: json['animated']! as bool,
);
}