FigmaVariable.fromJson constructor
Implementation
factory FigmaVariable.fromJson(Map<String, dynamic> json) {
return FigmaVariable(
id: json['id'] as String,
name: json['name'] as String,
resolvedType: json['resolvedType'] as String,
valuesByMode: json['valuesByMode'] as Map<String, dynamic>,
variableCollectionId: json['variableCollectionId'] as String,
);
}