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