SvgDebugAttribute.fromJson constructor

SvgDebugAttribute.fromJson(
  1. Map<String, Object?> json
)

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