IssueContextVariable.fromJson constructor

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

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