IssueContextVariable.fromJson constructor
Implementation
factory IssueContextVariable.fromJson(Map<String, Object?> json) {
return IssueContextVariable(
id: (json[r'id'] as num?)?.toInt(),
key: json[r'key'] as String?,
type: json[r'type'] as String? ?? '',
);
}