JsonContextVariable.fromJson constructor
Implementation
factory JsonContextVariable.fromJson(Map<String, Object?> json) {
return JsonContextVariable(
type: json[r'type'] as String? ?? '',
value: json[r'value'] as Map<String, Object?>?,
);
}