RemoteIssueLinkIdentifies.fromJson constructor

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

Implementation

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