factory IssueEvent.fromJson(Map<String, Object?> json) { return IssueEvent( id: (json[r'id'] as num?)?.toInt(), name: json[r'name'] as String?, ); }